Compare commits

..

14 commits

Author SHA1 Message Date
0df02da54d Merge remote branch 'origin/master' into f12 2010-10-29 23:23:48 +02:00
b1aaab61af Merge remote branch 'origin/master' into f12
Conflicts:
	.gitignore
2010-08-31 21:22:48 +02:00
ce03481379 Merge remote branch 'origin/master' into f12
Conflicts:
	.gitignore
	sources
	zarafa.spec
2010-08-09 22:40:03 +02:00
Fedora Release Engineering
0a1352a10c dist-git conversion 2010-07-29 16:27:58 +00:00
25cd23f3df Really add & commit zarafa-6.40.0-pthread.patch 2010-06-10 22:15:21 +00:00
7447fdfb4b Added patch to ensure -pthread for -lclucene configure test 2010-06-10 22:12:35 +00:00
0e6d95ec60 Upgrade to 6.40.0 (#564135, #565252, #600993) 2010-06-10 19:50:36 +00:00
9d16066d61 Upgrade to 6.30.14 2010-05-01 12:14:13 +00:00
20c31ab2b7 - Upgrade to 6.30.13
- Moved zarafa.schema file from %doc to %{_datadir}/%{name}
2010-04-25 17:06:16 +00:00
2c4ded98b5 Upgrade to 6.30.12 2010-03-20 11:54:39 +00:00
7d0d1b56bc Upgrade to 6.30.11 2010-03-18 23:33:22 +00:00
1cd5ed1bfa - Backported a patch from trunk to avoid the crash of zarafa-server when
creating new user with db or unix plugin (#564282, #567262)
- Backported another patch from trunk to avoid the crash of httpd caused by
    PHP mapi.so during the logon in the webaccess (#564129)
2010-02-23 21:24:36 +00:00
a5bc1de7ff Initial import of Zarafa into Fedora and EPEL 2010-02-08 14:21:32 +00:00
a7a58f9dda Initialize branch F-12 for zarafa 2010-02-07 21:27:31 +00:00
8 changed files with 1142 additions and 1 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
zarafa-6.40.3.tar.gz

View file

@ -1 +0,0 @@
Package is retired

1
sources Normal file
View file

@ -0,0 +1 @@
a2177498a1cc054b8beaba9a3887ec89 zarafa-6.40.3.tar.gz

View file

@ -0,0 +1,61 @@
Patch by Robert Scheck <robert@fedoraproject.org> for zarafa >= 6.40.0, which only
removes the paths from autoconf/automake related files, that don't exist in the OSS
version of Zarafa. Having these paths not removed causes autoreconf to fail, but a
re-run of autoreconf is needed in order to get the rpaths completely out of all the
libraries and binaries built during the make process.
--- zarafa-6.40.0/configure.ac 2010-05-31 15:45:19.000000000 +0200
+++ zarafa-6.40.0/configure.ac.package 2010-06-06 02:48:22.000000000 +0200
@@ -772,19 +772,6 @@
version
specialbuild
])
-dnl non-oss files
-if test -d `dirname $0`/licensed; then
-AC_CONFIG_FILES([
- liblicense/Makefile
- licensed/Makefile
- ECtools/zarafa-backup/Makefile
- ECtools/zarafa-backup/helpers/Makefile
- ECtools/zarafa-report/Makefile
- ECtools/libarchiver/Makefile
- ECtools/zarafa-archiver/Makefile
- debian/zarafa.install
-])
-fi
AC_OUTPUT
--- zarafa-6.40.0/Makefile.am 2010-05-31 15:45:19.000000000 +0200
+++ zarafa-6.40.0/Makefile.am.package 2010-06-06 02:51:29.000000000 +0200
@@ -1,9 +1,5 @@
AUTOMAKE_OPTIONS = 1.9 foreign
-if ! OSS_ONLY
-PROSUBS = liblicense licensed
-endif
-
SUBDIRS = common libfreebusy zarafa-libsync mapi4linux $(PROSUBS) provider libicalmapi inetmapi php-ext spooler gateway caldav ECtools installer po doc
if WITH_PERL
@@ -17,10 +13,6 @@
common/ecversion.h: versionheader.sh
sh ${top_srcdir}/versionheader.sh > common/ecversion.h
-if ! OSS_ONLY
-CLEANFILES=common/ecversion.h
-endif
-
dist-hook:
find $(distdir) -type d -name .svn -exec rm -rf {} \; 2>/dev/null || true
if OSS_ONLY
--- zarafa-6.40.0/ECtools/Makefile.am 2010-05-31 15:45:18.000000000 +0200
+++ zarafa-6.40.0/ECtools/Makefile.am.package 2010-06-06 02:48:37.000000000 +0200
@@ -1,7 +1,3 @@
-if ! OSS_ONLY
-PROSUBS = zarafa-backup zarafa-report libarchiver zarafa-archiver
-endif
-
if WITH_TESTTOOLS
TESTSUBS = ECTestTools
endif

32
zarafa-webaccess.conf Normal file
View file

@ -0,0 +1,32 @@
#
# Zarafa Webaccess featuring a 'Look & Feel' similar to Outlook
#
Alias /webaccess /usr/share/zarafa-webaccess/
# Following Apache and PHP settings need to be set to work correct
#
<Directory /usr/share/zarafa-webaccess/>
# Some apache settings
Options -Indexes +FollowSymLinks
# Register globals must be off
php_flag register_globals off
# Magic quotes must be off
php_flag magic_quotes_gpc off
php_flag magic_quotes_runtime off
# The maximum POST limit. To upload large files, this value must
# be larger than upload_max_filesize.
php_value post_max_size 31M
php_value upload_max_filesize 30M
# Short open tags must be on
php_flag short_open_tag on
# Uncomment for debugging purposes only. Make sure Apache/PHP can
# write to this file or no errors will be logged!
# php_flag log_errors on
# php_value error_log /var/lib/zarafa-webaccess/error_log
</Directory>

2
zarafa.ini Normal file
View file

@ -0,0 +1,2 @@
; Enable Zarafa mapi extension module
extension=mapi.so

13
zarafa.logrotate Normal file
View file

@ -0,0 +1,13 @@
/var/log/zarafa/SERVICE.log {
weekly
missingok
rotate 52
compress
delaycompress
notifempty
postrotate
killall -HUP zarafa-SERVICE 2> /dev/null || true
endscript
create 0644 zarafa zarafa
}

1032
zarafa.spec Normal file

File diff suppressed because it is too large Load diff