*** mailman-2.0/Mailman/mm_cfg.py Thu Sep 7 22:37:10 2000 --- mailman-2.0/Mailman/mm_cfg.py Thu Sep 7 23:15:04 2000 *************** *** 42,44 **** --- 42,144 ---- ################################################## # Put YOUR site-specific settings below this line. + + # dgc - Everything below here is in disagreement with stock defaults + + # Site-specific settings + DEFAULT_HOST_NAME = 'listtest.uchicago.edu' + DEFAULT_URL = 'https://listtest.uchicago.edu/mailman/' + MAILMAN_OWNER = 'mailman-owner@%s' % DEFAULT_HOST_NAME + + # Default NNTP server for news gateways + DEFAULT_NNTP_HOST = 'uchinews.uchicago.edu' + + # Archive defaults + DEFAULT_ARCHIVE_PRIVATE = 1 # 0=public, 1=private + + # How many members to display at a time on the admin cgi to unsubscribe them + # or change their options? + DEFAULT_ADMIN_MEMBER_CHUNKSIZE = 40 + + # Should a list, by default be advertised? What is the default maximum number + # of explicit recipients allowed? What is the default maximum message size + # allowed? + DEFAULT_LIST_ADVERTISED = 0 + + # This variable controlls whether monthly password reminders are sent. + DEFAULT_SEND_REMINDERS = 0 + + # Default to MIME digests, if digests are used + DEFAULT_MIME_IS_DEFAULT_DIGEST = 1 + + # Added message-id: + DEFAULT_PLAIN_DIGEST_KEEP_HEADERS = ['message', 'date', 'from', + 'subject', 'to', 'cc', + 'reply-to', 'organization', + 'message-id'] + + + # How long should subscriptions requests await confirmation before being + # dropped? + PENDING_REQUEST_LIFE = days(7) + + # How long should messages which have delivery failures continue to be + # retried? After this period of time, a message that has failed recipients + # will be dequeued and those recipients will never receive the message. + DELIVERY_RETRY_PERIOD = days(5) + + + #BACKGD_COLOR = "#FFFFFF" # Page background + #MAJOR_COLOR = "#99CCFF" # Major section headers + #MINOR_COLOR = "#FFF0D0" # Minor section headers + #UINFO_COLOR = "#DDDDDD" # User name and password changes + #ADMPW_COLOR = "#99CCCC" # List admin password changes + #FIELD_COLOR = "#CCCCCC" # List admin field descriptions + #OPTION_COLOR = "#DCDCDC" # User option field descriptions + #TEXT_COLOR = "#000000" # Primary text color + #ERROR_COLOR = "#FF66CC" # Error text color + #LINK_COLOR = "" # If nonnull, forces LINK= in Document() + #ALINK_COLOR = "" # If nonnull, forces ALINK= in Document() + #VLINK_COLOR = "" # If nonnull, forces VLINK= in Document() + + MAJOR_COLOR = "#FFFFFF" # Major section headers + MINOR_COLOR = "#EEEEE3" # Minor section headers + LINK_COLOR = "#0000FF" # If nonnull, forces LINK= in Document() + ALINK_COLOR = "#FF0000" # If nonnull, forces ALINK= in Document() + VLINK_COLOR = "#660000" # If nonnull, forces VLINK= in Document() + HIGHLIGHT = "#EEEEEE" + + ## Wrap all documents up in this container. + GLOBAL_HEADER = ''' +  
+
+ + + + + +
+ + +
+ + +
+   + ''' + + ## Close the container. + ## (Which container do you mean, the small container or the blue container?) + GLOBAL_FOOTER = ''' +
+ University of Chicago +
+ ''' + + ## Don't show that ugly GNU picture. + IMAGE_LOGOS = "" + + ## Ignore virtual hosting, because we're transitionary. + VIRTUAL_HOST_OVERVIEW = 0