Re: [Mailman-Users] mailman does not ask for password

2013-01-29 Thread Mark Sapiro
Matthias Bezold wrote:
>
>we have a problem with mailman on Ubuntu 10LTS. We have set a site password 
>using mmsitepass (and before that using the Plesk interface). Mailman is 
>referenced globally for several domains using a ScriptAlias, but when opening 
>the admin interface (e.g. .../cgi-bin/mailman/create), mailman does not ask 
>for a password.


The Mailman create page doesn't ask for the creator authentication when
you go to the page. You need to enter the password in the last field
on the form.


>What else can be do to enable the site password that you have to enter before 
>you receive any options in the mailman area?


If you can visit admin pages other than the overview (e.g.
.../cgi-bin/mailman/admin/LISTNAME) without authentication, you
probably have a saved authentication cookie for the list in your
browser.

-- 
Mark Sapiro The highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan

--
Mailman-Users mailing list Mailman-Users@python.org
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


Re: [Mailman-Users] virtual domain https and admin interface

2013-01-29 Thread Mark Sapiro
Matthias Schmidt wrote:
>
>hmm, I found this: 
>http://wiki.list.org/display/DOC/4.27+Securing+Mailman's+web+GUI+by+using+Secure+HTTP-SSL
>and followed these advice, but now it still doesn't work and on top of it I 
>get redicted to the default url host with the login page after trying to 
>accept a moderated mail.
>
>mm_cfg.py looks like this:
>MTA = 'Postfix'
>DEFAULT_EMAIL_HOST = 'mcgregor.admilon.net'
>DEFAULT_URL_HOST = 'mcgregor.admilon.net'
>DEFAULT_URL_PATTERN = 'https://%s/mailman/'
>PUBLIC_ARCHIVE_URL = 'https://%(hostname)s/pipermail/%(listname)s'
>VIRTUAL_HOSTS.clear()
>add_virtualhost('www.virtualA.com', 'virtualA.com')
>add_virtualhost('liste.virtualB.com', 'virtualB.com')
>POSTFIX_STYLE_VIRTUAL_DOMAINS = ['virtualA.com','virtualB.com']


You need to run

bin/withlist -r fix_url -l LISTNAME -u xxx

where xxx is either www.virtualA.com or liste.virtualB.com as
appropriate for the list. It seems you ran fix_url, but without the -u
option for the list's web domain.

-- 
Mark Sapiro The highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan

--
Mailman-Users mailing list Mailman-Users@python.org
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


Re: [Mailman-Users] About Spam Filtering

2013-01-29 Thread Mark Sapiro
METU E-List Admin wrote:
>
>In some of our lists, we are receiving excessive spam messages. We 
>analyzed the spam messages and found that they have similar headers. As 
>a result, we developed the following list:
>
>^X-Mailer: (?!Microsoft Outlook .*)$
>^X-mailer: .*$

This includes the one above it.


>^X-Mailer-LID: .*$
>^X-Mailer-RecptId: .*$
>^X-Mailer-SID: .*$
>^X-Mailer-Sent-By: .*$
>^X-Spam-Status: Yes.*$
>^X-Spam-Flag: YES
>^X-Virus-Status: Yes
>
>We don't want to receive any mails from external mail systems, only real 
>persons can send emails.
>
>We enter this list to the bounce_matching_headers part (in the admin 
>panel, under Spam Filtering).


bounce_matching_headers doesn't work that way. See the '(Details for
bounce_matching_headers' link.

Regexps like the above should go in header_filter_rules with an
appropriate action.

-- 
Mark Sapiro The highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan

--
Mailman-Users mailing list Mailman-Users@python.org
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


[Mailman-Users] mailman does not ask for password

2013-01-29 Thread Matthias Bezold
Hi all,


we have a problem with mailman on Ubuntu 10LTS. We have set a site password 
using mmsitepass (and before that using the Plesk interface). Mailman is 
referenced globally for several domains using a ScriptAlias, but when opening 
the admin interface (e.g. .../cgi-bin/mailman/create), mailman does not ask for 
a password. What else can be do to enable the site password that you have to 
enter before you receive any options in the mailman area?

Any help is really appreciated - thanks!


Matthias
--
Mailman-Users mailing list Mailman-Users@python.org
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


Re: [Mailman-Users] virtual domain https and admin interface

2013-01-29 Thread Matthias Schmidt
Am 29.01.2013 um 18:27 schrieb Matthias Schmidt:

> Hello,
> I have mailman 2.1.14 running on OS X Server 10.6.8
> One list runs on a virtual domain.
> All webpages for the list are addressed via https.
> I achieved that with a redirect rule in apache, it simply redirects all http 
> of that domain to https.
> That works fine so far, but when I try to approve the message of a moderated 
> user nothing happens, the page just gets reloaded with no change.
> What I'm missing here?

hmm, I found this: 
http://wiki.list.org/display/DOC/4.27+Securing+Mailman's+web+GUI+by+using+Secure+HTTP-SSL
and followed these advice, but now it still doesn't work and on top of it I get 
redicted to the default url host with the login page after trying to accept a 
moderated mail.

mm_cfg.py looks like this:
MTA = 'Postfix'
DEFAULT_EMAIL_HOST = 'mcgregor.admilon.net'
DEFAULT_URL_HOST = 'mcgregor.admilon.net'
DEFAULT_URL_PATTERN = 'https://%s/mailman/'
PUBLIC_ARCHIVE_URL = 'https://%(hostname)s/pipermail/%(listname)s'
VIRTUAL_HOSTS.clear()
add_virtualhost('www.virtualA.com', 'virtualA.com')
add_virtualhost('liste.virtualB.com', 'virtualB.com')
POSTFIX_STYLE_VIRTUAL_DOMAINS = ['virtualA.com','virtualB.com']

thanks
Matthias


--
Mailman-Users mailing list Mailman-Users@python.org
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


[Mailman-Users] virtual domain https and admin interface

2013-01-29 Thread Matthias Schmidt
Hello,
I have mailman 2.1.14 running on OS X Server 10.6.8
One list runs on a virtual domain.
All webpages for the list are addressed via https.
I achieved that with a redirect rule in apache, it simply redirects all http of 
that domain to https.
That works fine so far, but when I try to approve the message of a moderated 
user nothing happens, the page just gets reloaded with no change.
What I'm missing here?
thanks
Matthias 
--
Mailman-Users mailing list Mailman-Users@python.org
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


[Mailman-Users] About Spam Filtering

2013-01-29 Thread METU E-List Admin

Hello,

In some of our lists, we are receiving excessive spam messages. We 
analyzed the spam messages and found that they have similar headers. As 
a result, we developed the following list:


^X-Mailer: (?!Microsoft Outlook .*)$
^X-mailer: .*$
^X-Mailer-LID: .*$
^X-Mailer-RecptId: .*$
^X-Mailer-SID: .*$
^X-Mailer-Sent-By: .*$
^X-Spam-Status: Yes.*$
^X-Spam-Flag: YES
^X-Virus-Status: Yes

We don't want to receive any mails from external mail systems, only real 
persons can send emails.


We enter this list to the bounce_matching_headers part (in the admin 
panel, under Spam Filtering).


However, we couldn't make this list processed by Mailman. We also 
couldn't understand in what part we are doing wrong.


Can you please assist us in this situation?

Thanks,

Note: We are using Mailman 2.1.13
--
Mailman-Users mailing list Mailman-Users@python.org
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