Web based groupware server written in PHP, forum at https://help.egroupware.org/
Go to file
2023-06-15 16:18:16 +02:00
addressbook pending translations from our translation server 2023-05-24 11:52:54 +02:00
admin Admin: Clicking 'Save' for custom translations forces a browser reload so translations are immediately available to the user 2023-06-12 09:06:41 -06:00
api fix lots of warnings filling zpush logs 2023-06-15 16:18:16 +02:00
calendar fix lots of warnings filling zpush logs 2023-06-15 16:18:16 +02:00
doc Changelog for 23.1.20230524 2023-05-24 11:58:49 +02:00
emailadmin remove hooks from EMailAdmin as it might screw up adding/removing accounts 2017-11-14 15:19:42 +01:00
filemanager fix not working folder creation via context menu 2023-06-12 17:20:28 +02:00
files
home Home: More detailed cloud/rain icons 2023-06-13 10:28:31 -06:00
importexport Importexport: Fix import definition field mapping had trouble with translations 2023-06-14 14:52:53 -06:00
infolog * Infolog / Tracker: Change timesheet total columns to ignore timesheet ACL 2023-06-12 09:50:45 -06:00
mail fix lots of warnings filling zpush logs 2023-06-15 16:18:16 +02:00
notifications
pixelegg Fix tooltip was under calendar popup 2023-06-14 09:13:42 -06:00
preferences Preferences: Change default multiselect close preference from open to close except email 2023-04-19 11:12:22 -06:00
resources Resources: Fix category ACL with no admin added a blank user, which then failed validation 2023-04-20 08:21:09 -06:00
saml
setup
timesheet * Infolog / Tracker: Change timesheet total columns to ignore timesheet ACL 2023-06-12 09:50:45 -06:00
.gitignore
.htaccess
.travis.yml
about.php
composer.json
composer.lock backport dependabot update of guzzlehttp/psr7 from 2.4.0 to 2.4.5 2023-04-20 21:27:18 +02:00
groupdav.htaccess
groupdav.php
Gruntfile.js
header.inc.php.template maintain an maintenance_release version in api/setup/setup.inc.php, also move update-checker images to api 2017-02-02 10:38:13 +01:00
index.php
install-cli.php
json.php fix PHP Warning: Undefined array key 2 2023-05-08 15:15:59 +02:00
LICENSE.md
login.php
logout.php
manifest.json
move-images
package-lock.json
package.json
README.md Fix installation instructions and wiki links 2021-08-10 12:07:08 +02:00
redirect.php
remote.php
rollup.config.js
SECURITY.md
service-worker.js
share.php
status.php * Filemanager: support for ownCloud WebDAV clients which keep a local directory in sync with server (by default users home-dir with local ownCloud dir, thought other dirs can be configured as well) 2012-07-12 08:20:33 +00:00
tsconfig.json
updateGruntfile.php
web-test-runner.config.mjs
webdav.php

EGroupware

Tools Usage
Travis CI runs unit-tests after each commit
Scrutinizer CI scrutinizer runs static analysis on our codebase
BrowserStack manual testing with unusual browser versions or platforms

Default and prefered installation method for EGroupware is via your Linux package manager:

Every other method (including a developer installation by cloning the repo) is way more complicated AND does not include all features, as part's of EGroupware are running in different containers, eg. the push-server!

Installing EGroupware 21.1 via Docker for non-Linux environments or not supported Linux distros:

EGroupware 21.1 can be installed via Docker, in fact the DEB/RPM packages also does that. Instructions on how to run EGroupware in Docker are in our Wiki and in doc/docker subdirectory.

Installing EGroupware development version via Docker:

Deprecated EGroupware development installation:

apt/yum/zypper install nodejs
npm install -g grunt-cli
  • install EGroupware and dependencies
cd /path/to/your/docroot
git clone https://github.com/EGroupware/egroupware.git # or git@github.com:EGroupware/egroupware.git for ssh
cd egroupware
./install-cli.php
  • install non-default EGroupware apps by cloning them into your egroupware directory eg.
cd /path/to/your/egroupware
git clone https://github.com/EGroupware/wiki.git

Keeping EGroupware up to date or switch to release branch:

cd /path/to/your/egroupware
./install-cli.php [<change-channel>]
setup/setup-cli.php # will tell you if a schema-update is necessary

install-cli.php supports the following "channels":

  • release: taged maintenance releases only eg. 19.1.20200701
  • bugfix: release-branch incl. latest bugfixes eg. 20.1, if you are currently on 20.1.20200710
  • <branch>: switch to given branch
  • master: latest development for next release

To change the channel, call install-cli.php <channel-to-update-to>.

For further instalation instructions see our wiki.