2022-03-09 00:27:37 +01:00
<!--
N.B.: This README was automatically generated by https://github.com/YunoHost/apps/tree/master/tools/README-generator
It shall NOT be edited by hand.
-->
2018-02-06 14:33:23 +01:00
2022-03-09 00:27:37 +01:00
# Horde for YunoHost
2018-02-06 14:33:23 +01:00
2023-11-02 22:27:24 +01:00
[![Integration level ](https://dash.yunohost.org/integration/horde.svg )](https://dash.yunohost.org/appci/app/horde) ![Working status ](https://ci-apps.yunohost.org/ci/badges/horde.status.svg ) ![Maintenance status ](https://ci-apps.yunohost.org/ci/badges/horde.maintain.svg )
2022-03-09 00:27:37 +01:00
[![Install Horde with YunoHost ](https://install-app.yunohost.org/install-with-yunohost.svg )](https://install-app.yunohost.org/?app=horde)
2018-02-06 14:33:23 +01:00
2022-03-09 00:27:37 +01:00
*[Lire ce readme en français.](./README_fr.md)*
2018-02-06 14:33:23 +01:00
2022-03-09 00:27:37 +01:00
> *This package allows you to install Horde quickly and simply on a YunoHost server.
If you don't have YunoHost, please consult [the guide ](https://yunohost.org/#/install ) to learn how to install it.*
2018-02-06 14:33:23 +01:00
2022-03-09 00:27:37 +01:00
## Overview
2018-02-06 14:33:23 +01:00
2022-03-09 00:27:37 +01:00
A groupware (webmail, adressbook, calendar) witch use PHP
2018-08-10 12:22:52 +02:00
2022-08-31 00:06:12 +02:00
**Shipped version:** 5.2.23~ynh1
2022-08-26 12:44:29 +02:00
2022-03-09 00:27:37 +01:00
**Demo:** http://demo.horde.org
2018-08-10 12:22:52 +02:00
2022-03-09 00:27:37 +01:00
## Screenshots
2018-08-10 12:22:52 +02:00
2023-01-12 09:14:36 +01:00
![Screenshot of Horde ](./doc/screenshots/screenshot.png )
2018-08-10 12:22:52 +02:00
2022-03-09 00:27:37 +01:00
## Disclaimers / important information
2018-08-10 12:22:52 +02:00
### Customisation
#### Install others app.
2018-02-13 09:40:20 +01:00
The package provide some apps, but it's could be possible to install some others apps. The list of all availabe apps are listed here : https://www.horde.org/apps
Before any change it's recommended to make a backup :
```bash
# In case of multiple instance adapt "horde" by the horde instance
sudo yunohost backup create --verbose --ignore-system --apps horde
```
Install horde apps with pear :
```bash
# Get the horde final_path
# In case of multiple instance adapt "horde" by the horde instance
final_path=$(yunohost app setting horde final_path)
# Set the pear command to call to stay in the horde environnement (not in the global system environnement)
pear_cmd="$final_path/pear/pear -c $final_path/pear.conf"
# Update the pear channel
$pear_cmd channel-update pear.horde.org
# Install the app that you want
$pear_cmd install -a -B horde/APP_TO_INSTALL
# Set the final permission
# In case of multiple instance adapt "horde" by the horde instance
chown -R www-data:horde $final_path
```
After you need to update the horde database schema and the horde config. So go on the horde config pannel (in the settings wheel > Preferences > Administration > Configuration). Click on "Update all DB schemas" and then on "Update all configurations".
Now you should be able to use the new apps.
2018-08-10 12:22:52 +02:00
### ActiveSync
2018-02-06 14:33:23 +01:00
For calendar, task and addressbook activeSync has been configured but not yet tested.
2018-08-10 12:22:52 +02:00
### Troubleshotting
2018-02-06 14:33:23 +01:00
**Get Address is missing domain while to try to send an email.**
- You need to create an identity before send an email.
- To create this go in the settings wheel > Preferences > Global Preferences > Personal Information.
- Complete the form and save it.
- You might be able to sed an email now.
2022-03-09 00:27:37 +01:00
## Documentation and resources
2018-08-10 12:22:52 +02:00
2022-08-26 12:44:29 +02:00
* Official app website: < https: // www . horde . org >
* Official admin documentation: < https: // wiki . horde . org >
2022-08-31 00:06:12 +02:00
* Upstream app code repository: < https: // github . com / horde / base >
2023-11-02 22:27:24 +01:00
* YunoHost Store: < https: // apps . yunohost . org / app / horde >
2022-08-26 12:44:29 +02:00
* Report a bug: < https: // github . com / YunoHost-Apps / horde_ynh / issues >
2018-08-10 12:22:52 +02:00
2022-03-09 00:27:37 +01:00
## Developer info
2018-08-10 12:22:52 +02:00
2022-03-09 00:27:37 +01:00
Please send your pull request to the [testing branch ](https://github.com/YunoHost-Apps/horde_ynh/tree/testing ).
2018-08-10 12:22:52 +02:00
To try the testing branch, please proceed like that.
2022-08-26 12:44:29 +02:00
``` bash
2018-08-10 12:22:52 +02:00
sudo yunohost app install https://github.com/YunoHost-Apps/horde_ynh/tree/testing --debug
or
sudo yunohost app upgrade horde -u https://github.com/YunoHost-Apps/horde_ynh/tree/testing --debug
```
2022-08-26 12:44:29 +02:00
**More info regarding app packaging:** < https: / / yunohost . org / packaging_apps >