freebsd-ports/mail/mailman/files/patch-Mailman::Defaults.py.in
Johann Visagie 4eb62bb3af - Add missing $CONFIGURE_ARGS. (Whoops again!)
- Actually install the images for Mailman's web front-end to
  ${PREFIX}/www/icons, instead of depending on the user to do this in a
  post-installation step.  Add a new build-time variable to control the
  location where these images are intstalled.
- Gratuitous change:  Change the GNU logo and link in the footer of most
  pages in Mailman's web front-end to a "Powered by FreeBSD" logo, and a link
  to the FreeBSD home page.  This was accomplished by:
  - Patching the source to allow for multiple footer bars based on a new
    configuration variable LOGO_OS.  If LOGO_OS is set to 'FreeBSD', the
    FreeBSD footer will be displayed; otherwise, it reverts to the default
    GNU footer.
  - Set LOGO_OS to 'FreeBSD' in the installed Defaults.py  (The user may
    override this in mm_cfg.py)
- Bump $PORTREVISION again.  (Sorry guys.)
2002-02-20 09:09:44 +00:00

26 lines
908 B
Python
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

--- Mailman/Defaults.py.in.orig Thu Nov 16 06:23:52 2000
+++ Mailman/Defaults.py.in Tue Feb 19 17:18:39 2002
@@ -47,8 +47,8 @@
# Don't change MAILMAN_URL, unless you want to point it at the list.org
# mirror.
-MAILMAN_URL = 'http://www.gnu.org/software/mailman/mailman.html'
-#MAILMAN_URL = 'http://www.list.org/'
+#MAILMAN_URL = 'http://www.gnu.org/software/mailman/mailman.html'
+MAILMAN_URL = 'http://www.list.org/'
# Site-specific settings
DEFAULT_HOST_NAME = '@FQDN@'
@@ -59,6 +59,12 @@
HOME_PAGE = 'index.html'
MAILMAN_OWNER = 'mailman-owner@%s' % DEFAULT_HOST_NAME
+
+# Should the operating system logo (and link) in the footer of Mailman's
+# web pages be for GNU or FreeBSD. Options are 'GNU' or 'FreeBSD', with
+# 'GNU' being the default. Note: This is not a standard Mailman
+# configuration option; it has been added by the FreeBSD port.
+LOGO_OS = 'FreeBSD'