6.0.0-beta13
4/15/26
  • Install Horde Groupware Applications

This will install a set of applications for a calendar/tasks/addressbook use case but not Email.

  • Kronolith Calendar
  • Nag Tasks
  • Mnemo Notes
  • Passwd Password
  • Turba Contacts
  • content Tagging support
  • timeobjects Helper for autogenerated calendars

++ Install applications

Inside your Root Project, run

composer require horde/kronolith ^5 horde/nag ^5 horde/content ^3 horde/timeobjects ^3 horde/mnemo ^5 horde/turba ^5 horde/passwd ^6

++ Provide configuration

Put config files into

  • var/config/nag/
  • var/config/kronolith
  • var/config/mnemo
  • var/config/turba
  • var/config/passwd

Run composer horde-reconfigure command

++ Configure via Web UI

Go to the web UI and generate the default configs for the calendar and tasks apps:

/horde/admin/config/config.php?app=kronolith
/horde/admin/config/config.php?app=nag

...

The content app does not need this.

On a fresh installation, the config UI will try to place the files in the web dir.
This would result in the files vanishing on the next update.
You need to move them to the persistent config dir.

mv web/nag/config/conf.php var/config/nag/conf.php mv web/kronolith/config/conf.php var/config/kronolith/conf.php ... composer horde-reconfigure

+++ Extra config for turba Addressbook

Put these extra files into var/config/turba/ for customizing your addressbook layout and storage

backends.local.php attributes.local.php

Turba will otherwise use a default setup with addressbooks stored in the SQL database.

Run the 'composer horde-reconfigure' command in the root project dir afterwards.

+++ Extra config for passwd

The password changing app will not be useful without additional configuration.

Put this extra file into var/config/passwd/ to make horde delegate password changing to your configured auth driver:

backends.local.php

Run the 'composer horde-reconfigure' command in the root project dir afterwards. ++ Setup the database tables Run this command: ./vendor/bin/horde-db-migrate up