Web based groupware server written in PHP, forum at https://help.egroupware.org/
Go to file
Hadi Nategh f424b1cdb6 WIP new framework style:
- Fix tab's close buttons jump while hovering
- Add search menu into info menu
- Add notifications as info menu and style it nicely
- Toggle avatar top menu by clicking away on body
- Fix notifications popup message alignment
2019-05-27 17:12:40 +02:00
addressbook some chars also require encoding for iCal 2+ or vCard 3+ 2019-05-27 17:00:40 +02:00
admin also mask openid secrets 2019-05-27 14:11:51 +02:00
api WIP new framework style: 2019-05-27 17:12:40 +02:00
calendar some chars also require encoding for iCal 2+ or vCard 3+ 2019-05-27 17:00:40 +02:00
doc copy 17.1 changelog to master to satisfy update checker 2019-04-02 13:56:06 +00:00
emailadmin
filemanager Add a way yto create a share for filemanager 2019-05-07 15:23:34 -06:00
files
home Fix translations for Home screen 2018-12-20 16:06:12 +01:00
importexport Store requester and comment into command history when importing users 2019-05-10 13:33:04 -06:00
infolog some chars also require encoding for iCal 2+ or vCard 3+ 2019-05-27 17:00:40 +02:00
mail Mail - add 'Mark all as read' action for folders too 2019-05-14 14:08:36 -06:00
notifications Add translations 2019-05-14 17:27:48 +02:00
pixelegg WIP new framework style: 2019-05-27 17:12:40 +02:00
preferences Set audio effect to disabled by default 2019-05-06 16:04:13 +02:00
resources Fix some missing translations found by Stefan Unverricht 2019-05-23 11:25:06 -06:00
setup Add translations 2019-05-14 17:27:48 +02:00
timesheet Reset bo object data before each import to fix imports without ID went to the same object 2019-03-26 11:26:41 -06:00
ViewerJS
.gitignore some more .gitignores 2019-03-14 10:24:25 +01:00
.htaccess
.travis.yml replace myrepos with install-cli.php in Travis 2019-02-23 12:33:32 +01:00
about.php
composer.json loading TinyMCE 5 through composer 2019-03-20 10:17:34 +01:00
composer.lock loading TinyMCE 5 through composer 2019-03-20 10:17:34 +01:00
groupdav.htaccess
groupdav.php
Gruntfile.js Add tutorials css into minified bundle 2019-04-03 14:42:03 +02:00
header.inc.php.template
index.php
install-cli.php fix apps managed by Composer (eg. projectmanager) are not updated 2019-04-01 18:08:56 +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 only append cd=yes, if there is not already a cd value 2019-04-04 13:29:28 +02:00
logout.php
package.json
README.md adding tools used in EGroupware development 2019-03-18 13:12:27 +01:00
redirect.php
remote.php
share.php
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 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 further EGroupware apps by cloning them into your egroupware directory eg.
cd /path/to/your/egroupware
git clone https://github.com/EGroupware/registration.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.