mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
e9bbf68245
how to handle the database upgrade and the SpamAssassin patch partial integration. There are several important changes that may affect your vpopmail installation and may need you to handle manually: - THE MYSQL CONNECTION INFORMATION IS NO LONGER DEFINED AT COMPILE-TIME! The WITH_MYSQL_{USER,PASSWD,SERVER,DB} variables should NOT be defined when you build the port; place that information in the vpopmail.mysql file after vpopmail has been installed! - the default domain is also no longer defined at compile time - you need to place it in the defaultdomain file after the installation. - the defaultdomain and vpopmail.mysql files are no longer blindly removed on deinstallation, they are only removed if they have not been modified - in vpopmail 5.4.18, the database schema was changed - some fields were extended from 64 to 96 characters. If you do not apply those changes to your database, as explained in the vpopmail/doc/UPGRADE file, your vpopmail installation may silently fail or lose the trailing portions of domain names and usernames. - in vpopmail 5.4.19, the upstream authors integrated large parts of Alex Dupre's SpamAssassin support, without the SPAM_THRESHOLD part. If you use vpopmail along with the SpamAssassin FreeBSD port support, take extra care to ensure that your installation still processes e-mail messages in the same way. - vpopmail 5.4.19 added support for maildrop as a mail delivery agent. This is available in the FreeBSD port if WITH_MAILDROP is defined. There is also a new user-limit flag for maildrop delivery. - vpopmail 5.4.19 added support for MySQL connections via Unix sockets instead of TCP sockets to the server. To do that, change the second value (the port number) in vpopmail.mysql to the full pathname of the MySQL socket (e.g. /tmp/mysql.sock). - vpopmail 5.4.20 extended the LDAP support; please see README.ldap for more information, and specify the LDAP connection information in the vpopmail/etc/vpopmail.ldap file after the installation.
28 lines
960 B
Diff
28 lines
960 B
Diff
diff -urN -x .svn ../../freebsd-port/vpopmail/Makefile.in ./Makefile.in
|
|
--- ../../freebsd-port/vpopmail/Makefile.in Fri Jan 26 17:13:24 2007
|
|
+++ ./Makefile.in Mon Jan 8 13:17:46 2007
|
|
@@ -863,7 +863,7 @@
|
|
@SET_MAKE@
|
|
|
|
install-exec-am:
|
|
- for d in bin doc etc include lib ; do \
|
|
+ for d in bin etc include lib ; do \
|
|
if test ! -d $(DESTDIR)@vpopmaildir@/$$d; then \
|
|
$(INSTALL) -d -g @vpopgroup@ -m 0755 -o @vpopuser@ \
|
|
$(DESTDIR)@vpopmaildir@/$$d ; \
|
|
@@ -919,14 +919,6 @@
|
|
$(INSTALL) -o root -m 0444 $$include \
|
|
$(DESTDIR)@vpopmaildir@/include/ ; \
|
|
done
|
|
-
|
|
- $(INSTALL) -d $(DESTDIR)@vpopmaildir@/doc/man_html
|
|
- $(INSTALL) -d $(DESTDIR)@vpopmaildir@/doc/doc_html
|
|
- $(INSTALL) -o @vpopuser@ -m 0444 -g @vpopgroup@ \
|
|
- doc/man_html/*.* $(DESTDIR)@vpopmaildir@/doc/man_html/
|
|
-
|
|
- $(INSTALL) -o @vpopuser@ -m 0444 -g @vpopgroup@ \
|
|
- doc/doc_html/*.* $(DESTDIR)@vpopmaildir@/doc/doc_html/
|
|
|
|
fix-priv:
|
|
if test -r $(MYSQLCONF); then \
|