45f056b829
Fix CVE-2008-1648 (denial of service) Several new translations (some of them disabled, because of missing locale support on NetBSD-3). Introduction of HTTP session in order to replace a lot of cookies, for better usability and security. This also allows some new features, from listing active session in admin page to crawler detection. per list custom user attributes (defined by the list owner) per list custom list parameters for use in authorization scenarios and mail templates LDAP alias manager can now be LDAPS XSS protection Session hijacking protection The performances mainly regarding the web interface have been significantly improved. new SOAP features allow remote list creation, ADD and DEL of list members Automatic list creation when a message is sent for the list. each operations that changes the status of messages/subscriptions/list config is now logged in a structured DB entry. Generalization of UTF-8 and more ... See http://www.sympa.org/ for complete list.
58 lines
2.2 KiB
Text
58 lines
2.2 KiB
Text
$NetBSD: patch-aa,v 1.5 2008/04/27 17:06:40 bouyer Exp $
|
|
|
|
--- Makefile.in.orig 2007-12-05 16:37:14.000000000 +0100
|
|
+++ Makefile.in 2008-04-27 15:16:02.000000000 +0200
|
|
@@ -508,7 +508,7 @@
|
|
@CVS2CL@
|
|
#endif
|
|
|
|
-all: warning checkperl checkcpan sources wrapper soap_wrapper man locale
|
|
+all: sources wrapper soap_wrapper man locale
|
|
|
|
rpm: build_rh_rpm build_mdk_rpm
|
|
|
|
@@ -612,7 +612,7 @@
|
|
$(MAKE) PERL='${PERL}' clean) || exit 1; \
|
|
done;
|
|
|
|
-install: importantchanges installdir installsrc installwws installwebtt2 installmailtt2 installlocale installman installscript installsample installconfig installdoc installsoap nextstep
|
|
+install: importantchanges installdir installsrc installwws installwebtt2 installmailtt2 installlocale installman installscript installsample installdoc installsoap nextstep
|
|
|
|
nextstep:
|
|
@echo ""
|
|
@@ -751,7 +751,7 @@
|
|
|
|
installdir:
|
|
@echo "Creating required directories"
|
|
- @for dir in $(DIR) $(EXPL_DIR) $(CONFDIR) $(SAMPLEDIR) $(ETCDIR) $(BINDIR) $(LOCALEDIR) $(DOCDIR) $(DIR)/static_content $(DIR)/static_content/icons ; do \
|
|
+ @for dir in $(DIR) $(EXPL_DIR) $(CONFDIR) $(SAMPLEDIR) $(ETCDIR) $(BINDIR) $(LOCALEDIR) $(DOCDIR) $(DIR)/sympa/static_content $(DIR)/sympa/static_content/icons ; do \
|
|
if [ ! -d $(DESTDIR)$$dir ] ; then \
|
|
echo "Creating $(DESTDIR)$$dir"; \
|
|
mkdir -p $(DESTDIR)$$dir; \
|
|
@@ -760,7 +760,7 @@
|
|
chmod 755 $(DESTDIR)$$dir; \
|
|
fi \
|
|
done
|
|
- @if [ ! -f $(DESTDIR)$(CONFDIR)/sympa.conf ] ; then \
|
|
+ @if false; then \
|
|
echo "First installation : installing conf directories..."; \
|
|
for dir in create_list_templates mail_tt2 web_tt2 scenari \
|
|
task_models general_task_models; do \
|
|
@@ -783,7 +783,7 @@
|
|
$(PERL) ./subst.pl src/etc/README_etc \
|
|
) \
|
|
fi
|
|
- @if [ ! -f $(DESTDIR)$(CONFDIR)/sympa.conf ] ; then \
|
|
+ @if false; then \
|
|
echo "First installation : installing spool directories..."; \
|
|
for dir in $(SPOOLDIR) $(SPOOLDIR)/msg $(SPOOLDIR)/digest $(SPOOLDIR)/moderation \
|
|
$(SPOOLDIR)/expire $(SPOOLDIR)/auth $(SPOOLDIR)/outgoing $(SPOOLDIR)/tmp \
|
|
@@ -797,7 +797,7 @@
|
|
fi \
|
|
done \
|
|
fi
|
|
- @if [ ! -f $(DESTDIR)$(CONFDIR)/sympa.conf ] ; then \
|
|
+ @if false ; then \
|
|
echo "First installation : creating archives and bounce directories..."; \
|
|
for dir in bounce arc ; do \
|
|
if [ ! -d $(DESTDIR)$(DIR)/$$dir ] ; then \
|