Web based groupware server written in PHP, forum at https://help.egroupware.org/
Go to file
2020-05-19 11:28:51 -06:00
addressbook Make taglist-state update its own options when country code changes 2020-05-13 15:21:26 -06:00
admin Admin: Add an 'All' account status filter 2020-05-19 11:00:21 -06:00
api allow to set a css class on body tag for (different) styling of an embeded window 2020-05-19 09:43:53 +02:00
calendar Calendar: Move check to reset participant status out of UI into BO so it's always checked 2020-05-19 10:44:56 -06:00
doc Changelog for 19.1.20200430 2020-04-30 19:49:46 +02:00
emailadmin
filemanager Filemanager: Add a 'None' option for editor mime type exclusion so you can override the default. 2020-05-19 11:28:51 -06:00
files
home chmod 644 2020-05-08 08:17:33 +02:00
importexport pending translations from our translation server 2020-04-29 19:53:40 +02:00
infolog chmod 644 2020-05-08 08:17:33 +02:00
mail Make sure external images warning message not obscuring mail content 2020-05-15 11:04:14 +02:00
notifications move who is available via push to push class and backends 2020-04-20 13:07:58 +02:00
pixelegg Fix sidebar toggle menu in mobile them 2020-05-14 15:07:09 +02:00
preferences chmod 644 2020-05-08 08:17:33 +02:00
resources chmod 644 2020-05-08 08:17:33 +02:00
saml * API: add SimpleSAMLphp for SAML/Shibboleth authentication and many more 2020-04-14 14:10:33 +02:00
setup Setup: Fix backups to keep of 0 gave an error "must be integer" 2020-05-12 09:30:55 -06:00
timesheet * Timesheet: Fix update via import without category or status cleared original 2020-04-14 14:32:46 -06:00
ViewerJS
.gitignore
.htaccess
.travis.yml Removing composer.lock causes Travis errors. Trying just updating collabora. 2020-03-10 10:48:34 -06:00
about.php
composer.json * API: add SimpleSAMLphp for SAML/Shibboleth authentication and many more 2020-04-14 14:10:33 +02:00
composer.lock [Security] Bump simplesamlphp/simplesamlphp from 1.18.5 to 1.18.6 2020-04-23 22:28:50 +02:00
groupdav.htaccess
groupdav.php
Gruntfile.js
header.inc.php.template
index.php
install-cli.php
json.php
LICENSE.md
login.php * API: add SimpleSAMLphp for SAML/Shibboleth authentication and many more 2020-04-14 14:10:33 +02:00
logout.php * API: add SimpleSAMLphp for SAML/Shibboleth authentication and many more 2020-04-14 14:10:33 +02:00
manifest.json
package.json newer jQuery types allowing eg. JQuery<HTMLVideoElement> 2020-05-10 14:56:50 +02:00
README.md Update README.md 2020-02-04 09:35:23 +01:00
redirect.php
remote.php
service-worker.js
share.php
status.php
tsconfig.json
updateGruntfile.php
webdav.php

EGroupware

Branch Status Tools Usage
master Build Status Travis CI runs unit-tests after each commit
19.1 Build Status Scrutinizer CI scrutinizer runs static analysis on our codebase
17.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 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 17.1 from github:

switch to 17.1 branch and follow instructions there

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. 17.1.20190222
  • bugfix: release-branch incl. latest bugfixes eg. 17.1, if you are currently on 17.1.20190222
  • <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.