Web based groupware server written in PHP, forum at https://help.egroupware.org/
Go to file
StefanU 7d6247cee6
Add MailFolderOutbox.svg
As replacement for png
2023-02-19 17:41:49 +01:00
addressbook Revert "fix commited git conflict" 2023-02-17 20:09:52 +01:00
admin pending translation from our translation server, thanks to Ministry of Post and Telecommunications Kambodscha for the Khmer translation 2023-02-17 15:48:17 +01:00
api Add MailFolderOutbox.svg 2023-02-19 17:41:49 +01:00
calendar pending translation from our translation server, thanks to Ministry of Post and Telecommunications Kambodscha for the Khmer translation 2023-02-17 15:45:29 +01:00
doc fix broken url in changelog 2023-02-10 10:34:08 +01:00
emailadmin
filemanager Filemanager: Fix broken drag 2023-02-17 09:16:13 -07:00
files
home pending translation from our translation server, thanks to Ministry of Post and Telecommunications Kambodscha for the Khmer translation 2023-02-17 15:48:17 +01:00
importexport pending translation from our translation server, thanks to Ministry of Post and Telecommunications Kambodscha for the Khmer translation 2023-02-17 15:45:29 +01:00
infolog pending translation from our translation server, thanks to Ministry of Post and Telecommunications Kambodscha for the Khmer translation 2023-02-17 15:48:17 +01:00
mail Delete mail_send.psd 2023-02-18 11:14:37 +01:00
notifications pending translation from our translation server, thanks to Ministry of Post and Telecommunications Kambodscha for the Khmer translation 2023-02-17 15:45:29 +01:00
pixelegg Make dialogs full width 2023-02-17 13:12:01 -07:00
preferences pending translation from our translation server, thanks to Ministry of Post and Telecommunications Kambodscha for the Khmer translation 2023-02-17 15:48:17 +01:00
resources pending translation from our translation server, thanks to Ministry of Post and Telecommunications Kambodscha for the Khmer translation 2023-02-17 15:48:17 +01:00
saml * SAML/Univention: support for Univention SAML IdP for SSO incl. docu 2022-08-04 20:10:23 +02:00
setup pending translation from our translation server, thanks to Ministry of Post and Telecommunications Kambodscha for the Khmer translation 2023-02-17 15:45:29 +01:00
timesheet pending translation from our translation server, thanks to Ministry of Post and Telecommunications Kambodscha for the Khmer translation 2023-02-17 15:48:17 +01:00
.gitignore Ignore maps & minified js 2021-07-20 15:05:26 -06:00
.htaccess
.travis.yml
about.php
composer.json update ADOdb to 5.20.8 to fix PostgreSQL not working with PHP 8.1 (affected_rows() returns false) 2023-01-30 12:09:15 +01:00
composer.lock updating celtic/lti v4.10.1 to be able to update/fix security problem of firebase/php-jwt fixed with v6.0.0 2023-02-17 20:04:52 +01:00
groupdav.htaccess
groupdav.php
Gruntfile.js Cleanup gruntfile 2022-09-12 13:24:42 +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 for binaries prefer grunt from node_modules/.bin and for all /usr/local/bin over /usr/bin 2022-05-06 12:48:17 +02:00
json.php Revert "json requests now close the PHP session immediately again and reopen it, if there was an update to the session" as it breaks Collabora editing 2022-09-27 19:02:20 +02:00
LICENSE.md
login.php fix some warnings / notices in session creation 2023-02-03 09:57:37 +01:00
logout.php
manifest.json remove removed logo164x164.png from manifest.json 2022-08-02 09:48:54 +02:00
move-images move images from pixelegg to default and drop png or gif, if we have an svg 2022-07-28 17:56:34 +02:00
package-lock.json Bump ua-parser-js from 0.7.28 to 0.7.33 2023-01-24 22:01:30 +01:00
package.json Fix selectbox positioning issue 2023-01-24 13:58:38 -07:00
README.md Fix installation instructions and wiki links 2021-08-10 12:07:08 +02:00
redirect.php
remote.php
rollup.config.js Merge branch 'master' into web-components 2021-10-06 14:02:22 -06:00
SECURITY.md Update SECURITY.md 2021-10-23 09:39:55 +02:00
service-worker.js
share.php
status.php
tsconfig.json deprecated egw.includeJS() in favor of es6 import statement 2021-07-09 17:27:22 +02:00
updateGruntfile.php generate a non-request specific importmap, as we ajax_exec apps and then not reload importmap 2021-06-09 19:00:53 +02:00
web-test-runner.config.mjs Get tests for Button passing again 2023-01-04 15:03:43 -07:00
webdav.php fix typo 2021-04-19 22:55:40 +02:00

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.