[Mailman-Users] Maximum number of members per list

2010-06-04 Thread Sergi

Hello,

i'm sorry if this has already been discussed here but my web search didn't 
bring much results.

Did this patch somehow made or will make it to the official mailman source?

https://bugs.launchpad.net/mailman/+bug/558151

If not, is there any way of limiting the number of members in a list?

Thanks,
Sergi Seira
--
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 Administrator sending a list from Hotmail

2010-06-04 Thread Robyn Bill Kemp
Dear Mailman Users
 
I am new to Mailman and set up a list of users to email information to members 
of my Rugby League Football Club.
I set up the list from C-Panel and I am not able to access the command line.  
The version of Mailman being used is 2.1.12.cp3.
My problem is that I have set myself as an administrator and have sent emails 
to the list via Outlook Express and all was OK.  However, I added another user 
to the Admin Group and he sent an email via Hotmail to the list but was refused 
access to the list.
Can anyone advise me were to look for a solution to this problem.
 
Regards
Bill Kemp
Engadine, Australia


  
--
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] Release of e-mails

2010-06-04 Thread Jasper - HRSA
Is there a setting in mailman where one can release 300 e-mails every hour.
My host only allow me to send 300 e-mails every hour.

 

huskyrescue-sig

 

Jasper van Jaarsveld
Cell: 083 231 2290

Fax: 086 586 0288

Husky Rescue - Representative
 mailto:jas...@huskyrescue.co.za jas...@huskyrescue.co.za
 http://www.huskyrescue.co.za www.huskyrescue.co.za

 

--
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] Release of e-mails

2010-06-04 Thread LuKreme
On 4-Jun-2010, at 02:33, Jasper - HRSA wrote:
Is there a setting in mailman where one can release 300 e-mails every hour.
 My host only allow me to send 300 e-mails every hour.

Get a new host.


-- 
One by one the bulbs burned out, like long lives come to their expected
ends.

--
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] Release of e-mails

2010-06-04 Thread Ralf Hildebrandt
* Jasper - HRSA jas...@huskyrescue.co.za:
 Is there a setting in mailman where one can release 300 e-mails every hour.
 My host only allow me to send 300 e-mails every hour.

I have a script for that :)
I put all mails from amlman on hold (via header_checks in Postfix) and
then I'm releasing 1 mail every x seconds using

(attached)

-- 
Ralf Hildebrandt
  Geschäftsbereich IT | Abteilung Netzwerk
  Charité - Universitätsmedizin Berlin
  Campus Benjamin Franklin
  Hindenburgdamm 30 | D-12203 Berlin
  Tel. +49 30 450 570 155 | Fax: +49 30 450 570 962
  ralf.hildebra...@charite.de | http://www.charite.de
#!/bin/sh

###
# #
# mailfreilass#
# #
# (c)2003 Udo Wolter (UWP)#
# #
# Schreibt Mails Loadvertraeglich #
# raus, die Status On-Hold haben  #
# zur Unterstuetzung der Rundmail #
# #
# 2003-08-06: mit 3.0-Load#
# 2007-05-02: individuelles Freilassen von Queuefiles
# #
###

set -x

#
# Sollte immer laufen !
# Zur Not mit Supervise !
#
while true
do

#
# Load-Status des 1-Minuten-Werts pruefen,
# wenn unter 10.0, dann 1 als OK-Wert zurueck-
# liefern, ansonsten 0 als Nein-Wert
#
  load1min=`uptime | gawk -F, '{
split($(NF-2),bla, )
if (bla[3] = 10.0){
  print 0
} else {
  print 1
}
  }'`
#
# Nur, wenn Load  10.0, wird die erste Zeile, in der
# ein ! vorkommt, auseinandergenommen und die
# Mail-ID rausgezogen
#
  if [ $load1min -eq 1 ]
  then
#ID=`mailq | gawk -F\! 'BEGIN{lauf=1}{
#  if ((index ($0, !))  lauf){
#   print $1
#   lauf = 0
# }
#}'`
ID=`mailq | gawk 'BEGIN {RS=}
  {if (sub(/!$/, , $1)||sub(/^!/, , $2)) {print $1; 
exit }}'`

#
# Nur, wenn die ID nicht leer ist (leer bedeutet,
# dass keine ID mit ! dabei war), wird die Mail-ID
# wieder eingetuetet und abgearbeitet
#
if [ ! -z $ID ]
then
   /usr/sbin/postsuper -H $ID  postqueue -i $ID
fi
  fi

#
# Alle 10 Sekunden aufrufen
#
  sleep 10
done
--
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] Maximum number of members per list

2010-06-04 Thread Mark Sapiro
Sergi wrote:

i'm sorry if this has already been discussed here but my web search didn't 
bring much results.

Did this patch somehow made or will make it to the official mailman source?

https://bugs.launchpad.net/mailman/+bug/558151


No.


If not, is there any way of limiting the number of members in a list?


Set Privacy options... - Subscription rules - subscribe_policy to
either 'Require approval' or 'Confirm and approve' and stop approving
subscriptions when you reach the limit.

(which seems to me to be a better approach than the patch in almost all
if not all cases)

-- 
Mark Sapiro m...@msapiro.netThe 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] Mailman Administrator sending a list from Hotmail

2010-06-04 Thread Mark Sapiro
On 6/3/2010 6:36 PM, Robyn  Bill Kemp wrote:
 
 I am new to Mailman and set up a list of users to email information
 to members of my Rugby League Football Club. I set up the list from
 C-Panel and I am not able to access the command line.  The version of
 Mailman being used is 2.1.12.cp3. My problem is that I have set
 myself as an administrator and have sent emails to the list via
 Outlook Express and all was OK.  However, I added another user to the
 Admin Group and he sent an email via Hotmail to the list but was
 refused access to the list. Can anyone advise me were to look for a
 solution to this problem.


For what reason was the message held or rejected?

Note that an admin (owner or moderator) address is not a list member
simply by virtue of being in the owner or moderator lists. If posting is
restricted to list members and the admin wants to most, the admin's
address must also be a list member.

-- 
Mark Sapiro m...@msapiro.netThe 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] Release of e-mails

2010-06-04 Thread Patrick Okui


On 4 Jun, 2010, at 10:33 AM, Jasper - HRSA wrote:

Is there a setting in mailman where one can release 300 e-mails  
every hour.

My host only allow me to send 300 e-mails every hour.


I haven't checked if mailman has any such option but IMHO it would be  
better to do that in your MTA (exim/postfix/...)


--
patrick
--
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] Bounce notification question

2010-06-04 Thread Ian Prietz
Hi all,

I was researching some things on Mailman. I am a new user. We have it available 
via a control panel through our host, so I do not have access to logs or 
anything of that nature.

I have a similar question that many have asked. How do you get Mailman to send 
all bounce notices to the list owner? I found a perfect response to my question 
in the link below. I am just looking for some more clarification on what would 
happen if I went with option 2 (re: aliases)

http://www.mail-archive.com/mailman-users@python.org/msg53750.html

1. How would I go about doing this?
2. Will that change the way that Mailman functions as a whole...what exactly 
does it do?
3. I also received the same advice from the help desk at my host/provider, re: 
changing the bounce score threshhold, that way I am definitely made aware when 
something happens, and for the sake of simplicity, that may be the way that I 
go.
4. Any other advice?

Thanks,

Ian



--
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] Bounce notification question

2010-06-04 Thread Mark Sapiro
Ian Prietz wrote:

I was researching some things on Mailman. I am a new user. We have it 
available via a control panel through our host, so I do not have access to 
logs or anything of that nature.

I have a similar question that many have asked. How do you get Mailman to send 
all bounce notices to the list owner? I found a perfect response to my 
question in the link below. I am just looking for some more clarification on 
what would happen if I went with option 2 (re: aliases)

http://www.mail-archive.com/mailman-users@python.org/msg53750.html

1. How would I go about doing this?


You don't have the access required to do any of the things mentioned in
that post other than option 1.


2. Will that change the way that Mailman functions as a whole...what exactly 
does it do?


If you were able to do it, option 2 sends the bounce notices to the
list owner and thus, Mailman is unable to process bounces because
Mailman doesn't receive them. It then becomes incumbent on the list
owner to react to the bounces appropriately.


3. I also received the same advice from the help desk at my host/provider, re: 
changing the bounce score threshhold, that way I am definitely made aware when 
something happens, and for the sake of simplicity, that may be the way that I 
go.


See 1. above.

-- 
Mark Sapiro m...@msapiro.netThe 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