Web based groupware server written in PHP, forum at https://help.egroupware.org/
Go to file
2022-12-04 08:09:43 +01:00
addressbook pending changes from our translation server 2022-12-02 09:59:30 +01:00
admin missed pending change from our translation server 2022-12-02 10:02:27 +01:00
api Styling for buttons on dialog 2022-12-02 11:23:09 -07:00
calendar Calendar: Edit dialog sizing 2022-12-02 14:18:02 -07:00
doc PHP > 7.4 exclude deprecated apps from old packages (not installed via git), always exclude sitemgr 2022-12-04 08:09:43 +01:00
emailadmin
filemanager pending changes from our translation server 2022-12-02 09:59:30 +01:00
files
home
importexport importexport: Avoid error or infinite loop for really badly parsed select values 2022-11-21 11:24:04 -07:00
infolog pending changes from our translation server 2022-12-02 09:59:30 +01:00
mail converting plain-text mail to html mistakes angle brackets for tags 2022-12-02 15:24:32 +01:00
notifications pending translations from our translation server 2022-09-14 11:08:00 +02:00
pixelegg Move message out from corner a little 2022-11-28 08:57:55 -07:00
preferences pending changes from our translation server 2022-12-02 09:59:30 +01:00
resources pending changes from our translation server 2022-12-02 09:59:30 +01:00
saml
setup * Setup: add dry-run option to account import from AD or LDAP 2022-11-21 10:10:27 +01:00
timesheet Update timesheet icon 2022-11-30 22:05:08 +01:00
.gitignore
.htaccess
.travis.yml
about.php
composer.json setting minimum version for 22.1 to PHP 7.4, recommended and maximum version to PHP 8.1 2022-09-20 13:53:07 +02:00
composer.lock * MySQL 8.0: fix DB backup recorded Int columns as TinyInt and stalls restore 2022-11-01 18:45:33 +01:00
groupdav.htaccess
groupdav.php
Gruntfile.js Cleanup gruntfile 2022-09-12 13:24:42 +02:00
header.inc.php.template
index.php
install-cli.php
json.php Revert "json requests now close the PHP session immediately again and reopen it, if there was an update to the session" as it breaks Collabora editing 2022-09-27 19:02:20 +02:00
LICENSE.md
login.php
logout.php
manifest.json
move-images
package-lock.json npm audit fix: minimatch 3.0.4 --> 3.0.8 2022-11-09 10:14:06 +01:00
package.json
README.md
redirect.php
remote.php
rollup.config.js
SECURITY.md
service-worker.js
share.php
status.php
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.