Web based groupware server written in PHP, forum at https://help.egroupware.org/
Go to file
2019-08-18 12:52:28 +02:00
addressbook Italien translations from Ilias/Webtrain 2019-08-06 09:57:40 +02:00
admin Hide groups template on initialization (since it's getting disabled on et2_ready after nm resized) otherwise nm resize takes its raw height into account which breaks users list size 2019-08-06 10:45:36 +02:00
api Etemplate - fix diff widget line numbers not scrolling properly in Firefox 2019-08-14 14:59:55 -06:00
calendar Calendar - fix incorrectly moved preference read 2019-08-15 11:32:30 -06:00
doc fix failing installation via docker-compose: wrong grant-host and NO quotes 2019-08-18 12:46:06 +02:00
emailadmin remove hooks from EMailAdmin as it might screw up adding/removing accounts 2017-11-14 15:19:42 +01:00
filemanager Remove unused preferred export definition preference 2019-08-02 10:17:16 -06:00
files
home bump version to 19.1 2019-07-16 10:46:59 +02:00
importexport pending translations from our translation server 2019-08-03 08:58:22 +02:00
infolog Remove unused preferred export definition preference 2019-08-02 10:17:16 -06:00
mail Make app action icons colored again 2019-08-05 10:59:26 +02:00
notifications * Notifications: remove calendar notification from the list after applying any of actions 2019-08-14 16:31:45 +02:00
pixelegg fix error from href="javascript:void()" by ignoring it 2019-08-15 19:37:12 +02:00
preferences Italien translations from Ilias/Webtrain 2019-08-06 09:57:40 +02:00
resources * Resources: allow up to 16k as custom-field value 2019-08-13 12:46:02 +02:00
setup remove quotes from arguments eg. 'db_host=db', in case it does not happen by shell (eg. debuging in Netbeans) 2019-08-18 12:52:28 +02:00
timesheet Remove unused preferred export definition preference 2019-08-02 10:17:16 -06:00
ViewerJS
.gitignore added openid to .gitignore 2019-08-06 16:04:20 +02:00
.htaccess
.travis.yml passing --ignore-platform-reqs also to install-cli.php to fix failing composer install 2019-06-17 15:57:31 +02:00
about.php
composer.json specify 19.1.x-dev as version 2019-08-06 13:20:49 +02:00
composer.lock update rocketchat and openid git hashes to build container based on 19.1 branch 2019-08-09 17:49:14 +02:00
groupdav.htaccess
groupdav.php
Gruntfile.js remove some jPicker left-overs 2019-08-01 15:22:29 +02:00
header.inc.php.template
index.php
install-cli.php pending translations from our translation server 2019-06-06 09:24:28 +02:00
json.php return and show in browser JSON parsing errors maybe caused by network problems 2018-11-01 12:00:08 +01:00
LICENSE.md GPL version 2 or any later version 2019-01-28 15:56:08 +01:00
login.php * Login: RememberMe token for either automatic login or as 2. factor for 2-Factor-Auth 2019-08-03 18:37:18 +02:00
logout.php only delete "Remember me" token on logout, if session is verified (user was logged in) 2019-08-06 09:59:08 +02:00
package.json remove old grunt-contrib-uglify (replaced with grunt-contrib-uglify-es) 2018-08-03 09:52:45 +02:00
README.md change "further" to "non-default" apps 2019-07-19 10:19:12 +02:00
redirect.php
remote.php
share.php Use isset(), otherwise it tries to create a share 2018-06-05 14:31:04 -06:00
status.php
updateGruntfile.php new TinyMCE "URL" 2019-03-20 12:05:20 +01:00
webdav.php

EGroupware

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