Web based groupware server written in PHP, forum at https://help.egroupware.org/
Go to file
ralf df938c79de fixed messed up signature changing from / mail-accounts
also fixed some undefined warnings
2022-05-02 17:19:37 +02:00
addressbook next chunk of fixed PHP Warning: Undefined array key or variable in main repo 2022-04-26 21:04:16 +02:00
admin fix not working [+Add] button in admin --> (onclick-)attributes must use double quotes 2022-04-29 15:16:19 +02:00
api fixed messed up signature changing from / mail-accounts 2022-05-02 17:19:37 +02:00
calendar * Calendar/Mobile view: Add a date indicator for all views in mobile theme 2022-05-02 14:45:07 +02:00
doc fix CallbackIterator to return mixed, as it can be overwritten with a callback 2022-04-24 21:27:53 +02:00
emailadmin
filemanager pending changes from our translation server 2022-04-04 13:26:38 +02:00
files
home
importexport next chunk of fixed PHP Warning: Undefined array key or variable in main repo 2022-04-26 21:04:16 +02:00
infolog CSS / Layout cleanup - better sizing on infolog description 2022-04-27 10:19:55 -06:00
mail fixed messed up signature changing from / mail-accounts 2022-05-02 17:19:37 +02:00
notifications next chunk of fixed PHP Warning: Undefined array key or variable in main repo 2022-04-26 21:04:16 +02:00
pixelegg CSS / Layout cleanup - Get rid of stupid scrollbars in dialogs 2022-04-27 10:14:01 -06:00
preferences pending translations from our translation server 2022-01-09 19:31:13 +01:00
resources add bookable to ressource list 2022-04-20 12:37:12 +02:00
saml
setup fix "Invalid character set was provided" error in newer MariaDB when trying to enter setup 2022-04-21 19:52:40 +02:00
timesheet fix not working translation of Admin > Apps > TimeSheet > Edit status 2022-03-05 15:27:45 +02:00
ViewerJS
.gitignore
.htaccess
.travis.yml
about.php
composer.json setting preferred install method for egroupware/* packages to source, to be able to update them via git 2022-04-25 09:48:53 +02:00
composer.lock update Horde mail packages to fix PHP 8.1 Deprecated: Return type 2022-04-26 13:25:36 +02:00
groupdav.htaccess
groupdav.php
Gruntfile.js fix missing flatpickr styles, thought you need to run: grunt cssmin 2022-02-16 15:36:06 +02:00
header.inc.php.template
index.php remove $windowed flag, as all template-sets are windows nowadays 2022-01-28 10:19:06 +02:00
install-cli.php always generate minified CSS, if grunt is installed 2022-04-21 13:45:38 +02:00
json.php
LICENSE.md
login.php
logout.php
manifest.json
package-lock.json npm audit fix 2022-04-27 08:43:27 +02:00
package.json update grunt-newer to fix prototype pollution in async 2022-04-20 22:03:11 +02:00
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.