Web based groupware server written in PHP, forum at https://help.egroupware.org/
Go to file
2021-02-14 17:46:08 +02:00
addressbook WIP incomming CTI / open CRM view when phone rings 2021-02-14 17:46:08 +02:00
admin Admin: Fix errors when deleting accounts 2021-02-11 15:07:04 -07:00
api WIP incomming CTI / open CRM view when phone rings 2021-02-14 17:46:08 +02:00
calendar Calendar: Add icon for notification action, use REQUEST method (reconfirm event) for immediate notifications 2021-02-11 11:43:47 -07:00
doc
emailadmin
filemanager Translation fixes from Stefan 2021-02-04 17:00:40 -07:00
files
home
importexport pending translations from our translation server 2021-02-03 08:25:50 +01:00
infolog pending translations from our translation server 2021-02-03 08:25:50 +01:00
mail * EPL/mail: support SpamTitan REST API to manage spam, requires an API token 2021-02-08 17:31:49 +02:00
notifications
pixelegg Style date_duration widget 2021-02-10 11:20:10 +01:00
preferences Implement auto color-scheme in order to respect browser's selected prefers-color-scheme 2021-01-26 17:04:37 +01:00
resources pending translations from our translation server 2021-02-03 08:25:50 +01:00
saml
setup
test
timesheet * Timesheet: Fix created time was wrong in user timezone was not the same as server timezone 2021-01-28 09:39:17 -07:00
ViewerJS
.gitignore
.htaccess
.travis.yml
about.php
composer.json * Adressbook: phone-number in search only returns contacts having that (normalized) number 2021-02-14 14:06:21 +02:00
composer.lock * Adressbook: phone-number in search only returns contacts having that (normalized) number 2021-02-14 14:06:21 +02:00
groupdav.htaccess
groupdav.php
Gruntfile.js
header.inc.php.template
index.php
install-cli.php
json.php
LICENSE.md
login.php
logout.php
manifest.json
package.json
README.md
redirect.php
remote.php
service-worker.js
share.php
status.php
tsconfig.json
updateGruntfile.php
vfs-context-links.php
vfs-context-share.php
vfs-context-webdav.php
vfs-context.php
webdav.php

EGroupware

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

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

https://software.opensuse.org/download.html?project=server%3AeGroupWare&package=egroupware-epl

Installing EGroupware 20.1 via Docker:

EGroupware 20.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 doc/docker subdirectory.

Installing EGroupware 19.1 via Docker:

EGroupware 19.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 doc/docker subdirectory.

Installing EGroupware development version:

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.