Web based groupware server written in PHP, forum at https://help.egroupware.org/
Go to file
2020-03-04 13:21:48 -07:00
addressbook Commit new translations from translation server 2019-11-25 16:53:51 +01:00
admin * Admin: Add copy account action 2020-03-04 13:21:48 -07:00
api fix error on window closing in Chrome 80+ 2020-03-02 10:56:23 +01:00
calendar fix error on window closing in Chrome 80+ 2020-03-02 10:56:23 +01:00
doc nginx depends on collabora and rocketchat to, otherwise they stop working after watchtower updated them (without nginx restart) 2020-02-18 11:21:14 +01:00
emailadmin
filemanager Filemanager: Remove special formatting on account search button 2019-11-19 10:25:10 -07:00
files
home Add svg version of home icon 2019-12-17 11:36:26 +01:00
importexport * ImportExport: fix error in importexport_cli.php (Console/Getopt.php not found) 2019-11-03 09:53:29 +01:00
infolog * Infolog: Fix context menu 'Schedule appointment' action opened in calendar tab instead of a popup 2019-10-15 10:19:54 -06:00
mail Update read/unread icons for actions 2020-02-19 11:52:48 +01:00
notifications Fix notifications popup gets closed automatically when click is triggered from unread indicator element 2019-12-03 12:48:04 +01:00
pixelegg Apply stock style for centerbox in login page 2020-02-18 15:32:56 +01:00
preferences Limit text length of pref default value, prevents horizontal scrollbar 2020-01-06 16:20:10 +01:00
resources pending translations from our translation server 2019-08-22 14:02:02 +02:00
setup fix old AD class in account-migration 2020-01-24 14:19:21 +01:00
timesheet * Timesheet: Fix project link was missing when changing project after clicking "Save & New" 2020-02-03 10:39:32 -07:00
ViewerJS
.gitignore add webauthn app to .gitignore 2019-09-15 11:03:08 +02:00
.htaccess
.travis.yml trying to fix Travis builds (using default mysql service instead of failing MariaDB:10.0 addon) 2020-02-04 09:16:31 +01:00
about.php
composer.json specify 19.1.x-dev as version 2019-08-06 13:20:49 +02:00
composer.lock move dependencies to project 2019-12-03 14:17:48 -07:00
groupdav.htaccess
groupdav.php * all apps: fixing serveral cases of wrong Url when proxying and terminating TLS on the proxy 2019-11-15 13:55:12 +01:00
Gruntfile.js Update gruntfile for projectmanager 2019-12-03 14:02:31 -07:00
header.inc.php.template
index.php
install-cli.php
json.php * Admin: optional session-action column in access-log and sessions 2019-12-20 09:02:34 +02:00
LICENSE.md
login.php
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
README.md Update README.md 2020-02-04 09:38:01 +01:00
redirect.php fixing proxy url 2019-11-15 13:56:36 +01:00
remote.php
share.php
status.php
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 development version:

apt/yum/zypper install nodejs
npm install -g grunt-cli
  • install EGroupware and dependencies
cd /path/to/your/docroot
git clone -b 19.1 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.