sandeep kumar wrote:

>
>I have changed password of list creator password using mmsitepass
>
>dcis:/var/mailman/bin # ./mmsitepass
>New site password: 
>Again to confirm password: 
>Password changed.
>dcis:/var/mailman/bin # ./mmsitepass -c
>New list creator password: 
>Again to confirm password: 
>Password changed.
>dcis:/var/mailman/bin # 
>
>This was the error i have got when using the password which was change by above
>
>Error: You are not authorized to create new mailing lists


This is between your web browser and the web server on the host or
between the web server and Mailman.

Find the section in the script Mailman/Cgi/create.py that says

    # The authorization password must be non-empty, and it must match
either
    # the list creation password or the site admin password
    ok = 0
    if auth:
        ok = Utils.check_global_password(auth, 0)
        if not ok:
            ok = Utils.check_global_password(auth)
    if not ok:
        request_creation(
            doc, cgidata,
            _('You are not authorized to create new mailing lists'))
        return

Change the line

            _('You are not authorized to create new mailing lists'))

to

            _('Authorization failed. auth = %(auth)r'))

That will then show you the creator password that Mailman is seeing and
you can verify that it is or is not what you entered.

Also, it is possible that if the password contains non-ascii
characters, that there are character set conversion issues. The
password should not contain other than the 95 printable us-ascii
characters and must not begin or end with spaces.
-- 
Mark Sapiro <[email protected]>        The highway is for gamblers,
San Francisco Bay Area, California    better use your sense - B. Dylan

------------------------------------------------------
Mailman-Users mailing list [email protected]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Reply via email to