<pre><!--  Write at below space.  -->

Are you doing this as a Malman installation admin or as a
list admin?

There is no easy way for a list admin to do this for the
main installation page.  You can do it for your lists page
by entering the admin interface and editing the html for the
listinfo page.

If you're a Mailman install admin, and you want to change
the main listinfo page (for example the one at python.org)

http://mail.python.org/mailman/listinfo

you can edit the file $prefix/Mailman/Cgi/listinfo.py
I did this on a testing installation located at:

http://www.ridersconnection.com/mailman/listinfo

I added the logo at the top of the page by changing the
definition of the FormatListinfoOverview function.

----
... some code ...
def FormatListinfoOverview(error=None):
    "Present a general welcome and itemize the (public)
lists for this host."
 
    # XXX We need a portable way to determine the host by
which we are being
    #     visited!  An absolute URL would do...
    http_host = os.environ.get('HTTP_HOST',
os.environ.get('SERVER_NAME'))
    port = os.environ.get('SERVER_PORT')
    # strip off the port if there is one
    if port and http_host[-len(port)-1:] == ':'+port:
        http_host = http_host[:-len(port)-1]
    if mm_cfg.VIRTUAL_HOST_OVERVIEW and http_host:
        host_name = http_host
    else:
        host_name = mm_cfg.DEFAULT_HOST_NAME
 
    doc = Document()
    legend = "%s Mailing Lists" % host_name
    doc.SetTitle(legend)

# lets see if we can insert an image at the top of this page
    doc.AddItem('&lt;img
src="/mailmanlogos/riders_connection_header.png" width="750"
height="115" alt="Ocentrix Riders\' Connection" 
border="0"&gt;')                                                                                                                                        
... more code ...
----

It's a pretty basic solution, but I haven't done much python
coding so it was a lot of fun.  I hope this helps.  If you'd
like more details let me know. 

Good luck,

-Ben

</pre> 

<BLOCKQUOTE style="BORDER-LEFT: #000000 solid 2px;
MARGIN-LEFT: 5px; PADDING-LEFT: 5px">------- <FONT
color=#0000FF>Original Copy</FONT> -------<BR>
>Subject: [Mailman-Users] Configure main page.<br>
>Date: 05/03/2001 9:27 PM<br>
>From: &lt;mc2575@mclink.it&gt;<br>
>To: &lt;Mailman-Users@python.org&gt;<br>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html;
charset=iso-8859-1">
<META content="MSHTML 5.50.4611.1300" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>I like to add in the main page
some links, but 
LISTINFO is hard-coded.</FONT></DIV>
<DIV><FONT face=Arial size=2>How it's possible to modifify
it?</FONT></DIV>
<DIV><FONT face=Arial size=2>Cheers.</FONT></DIV>
<DIV><FONT face=Arial size=2>Alberto</FONT></DIV>
<DIV><FONT face=Arial size=2>Italy</FONT></DIV>
<DIV>&nbsp;</DIV></BODY></HTML>




</BLOCKQUOTE>