Re: [Mailman-Users] regarding specific mail ids

2011-04-07 Thread Mark Sapiro
Arun Gupta wrote:
>
>According to my scenario please see following points
>
>t...@example.com: mi...@example.com, jo...@example.com, cl...@example.com


Do you mean

t...@example.com: mi...@example.com, t...@example.com, cl...@example.com


>(these are the member of the list)
>
>Here t...@example.com is mailing list
>
>1. If x...@example.com sent mail to t...@example.com then only 
>mi...@example.com & t...@example.com will get the mails
>
>
>2. But if a...@example.com sent mail to t...@example.com then all the
>member (mi...@example.com, t...@example.com, cl...@example.com) will get
>the mails.
>
>I do not make 2 lists according to your suggestion, and also i do not want 
>configure with regexp matches on the Subject: or Keywords, means i am 
>concentrating on the poster based.
>
>Please elaborate about this scenario.


As I indicated previously, I think your requirements necessate at a
minimum, a custom handler to replace the standard
Mailman/Handlers/CalcRecips.py for this list, and some way for this
handler to know which list members should receive which poster's
posts. Implementation of custom handlers in general is discussed in
the FAQ at . The details of the
implimentation of a handler to meet your requirements are beyond the
scope of the mailman-*@python.org lists.

On the other hand, If it is acceptable for the list members themselves
to determine whose posts they receive, you could do this with topics
by defining a topic for each poster and making a custom version of
Mailman/Handlers/Tagger.py for this list which would tag each post
with that poster's topic.

Then the list members could subscribe to the topics of the posters thay
want to receive.

The modified Tagger would be fairly simple. Just change the logic which
matches topic regexps against Subject: and Keywords: headers to match
against the From: header instead.

-- 
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] regarding specific mail ids

2011-04-07 Thread Arun Gupta

Dear Steve,

what is the mean of posters, it is "sender address" who send to the 
mailing list. Am i right or wrong ?, please clear and explain.


Regards,

Arun Kumar Gupta
=


On Thu, 7 Apr 2011, Steve Burling wrote:

--On April 7, 2011 4:28:00 PM +0300 Geoff Shang  
wrote:



You cannot do what you want to do without making two lists.  You can
still set it up so that everyone posts to the same address, but you'll
still need two lists.


To which I reply:

I get the distinct impression that this isn't a question of two lists, but 
"n" lists, where "n" is the number of posters.


Sounds like a nightmare to manage.

--
Steve Burling
University of Michigan, ICPSRVoice: +1 734 615.3779
330 Packard Street   FAX:   +1 734 647.8700
Ann Arbor, MI 48104-2910

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.



--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

--
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] regarding specific mail ids

2011-04-07 Thread Geoff Shang

On Thu, 7 Apr 2011, Arun Gupta wrote:

I do not make 2 lists according to your suggestion, and also i do not want 
configure with regexp matches on the Subject: or Keywords, means i am 
concentrating on the poster based.


You cannot do what you want to do without making two lists.  You can still 
set it up so that everyone posts to the same address, but you'll still 
need two lists.


Geoff.

--
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] regarding specific mail ids

2011-04-07 Thread Arun Gupta

Dear Mark,

According to my scenario please see following points

t...@example.com: mi...@example.com, jo...@example.com, cl...@example.com
(these are the member of the list)

Here t...@example.com is mailing list

1. If x...@example.com sent mail to t...@example.com then only 
mi...@example.com & t...@example.com will get the mails



2. But if a...@example.com sent mail to t...@example.com then all the
member (mi...@example.com, t...@example.com, cl...@example.com) will get
the mails.

I do not make 2 lists according to your suggestion, and also i do not want 
configure with regexp matches on the Subject: or Keywords, means i am 
concentrating on the poster based.


Please elaborate about this scenario.


Thanks & Regards,

Arun Kumar Gupta
=


On Wed, 6 Apr 2011, Mark Sapiro wrote:


Arun Gupta wrote:


First of all thanks for your response, Is it any way to customize my
mailman to achieve my goal please give me some clue or some document.



That depends on what your goal is. If you are willing to let the list
members and/or posters control this, there are possibilities.

You could create two lists, lista and listb. The members of lista would
be those people who should receive posts from either postera or
posterb, and the members of listb would be those who should receive
only posts from posterb.

Then if you put lista@... in listb's Non-digest options ->
regular_include_lists, and postera posts to lista and posterb posts to
listb, then the members of both lists will receive posterb's posts and
only the members of lista will receive postera's posts.

This relies on the posters posting to the correct list.

Alternatively, another reply suggested topics. This would work, but
topics are based on regexp matches on the Subject: or Keywords:
headers, not on the poster so the poster would have to identify the
topic. You could make your own custom version of
Mailman/Handlers/Tagger.py that would assign a Topic to a poster by
the poster's address and use topics in that way, but either of these
relies on list members subscribing to the appropriate topics. See the
FAQ at  for information on custom
handlers.

If your requirement is that who gets which poster's posts is solely
controlled by the list administrator, this would require either a
rather kludgy custom handler to replace CalcRecips.py or significant
modifications to various Mailman modules to implement flags to match
list members with posters and a UI to manipulate them. Such
modifications are beyond the scope of the mailman-*@python.org lists.

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


--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.



--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

--
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] regarding specific mail ids

2011-04-06 Thread Mark Sapiro
Arun Gupta wrote:
>
>First of all thanks for your response, Is it any way to customize my 
>mailman to achieve my goal please give me some clue or some document.


That depends on what your goal is. If you are willing to let the list
members and/or posters control this, there are possibilities.

You could create two lists, lista and listb. The members of lista would
be those people who should receive posts from either postera or
posterb, and the members of listb would be those who should receive
only posts from posterb.

Then if you put lista@... in listb's Non-digest options ->
regular_include_lists, and postera posts to lista and posterb posts to
listb, then the members of both lists will receive posterb's posts and
only the members of lista will receive postera's posts.

This relies on the posters posting to the correct list.

Alternatively, another reply suggested topics. This would work, but
topics are based on regexp matches on the Subject: or Keywords:
headers, not on the poster so the poster would have to identify the
topic. You could make your own custom version of
Mailman/Handlers/Tagger.py that would assign a Topic to a poster by
the poster's address and use topics in that way, but either of these
relies on list members subscribing to the appropriate topics. See the
FAQ at  for information on custom
handlers.

If your requirement is that who gets which poster's posts is solely
controlled by the list administrator, this would require either a
rather kludgy custom handler to replace CalcRecips.py or significant
modifications to various Mailman modules to implement flags to match
list members with posters and a UI to manipulate them. Such
modifications are beyond the scope of the mailman-*@python.org lists.

-- 
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] regarding specific mail ids

2011-04-06 Thread Mailman Admin
Hi Arun Gupta

On 04/06/2011 05:40 PM, Arun Gupta wrote:
> 
> First of all thanks for your response, Is it any way to customize my
> mailman to achieve my goal please give me some clue or some document.

Perhaps you can use "topics" for this.
http://wiki.list.org/display/DOC/Mailman+2.1+Members+Manual#Mailman2.1MembersManual-9Mailinglisttopics

But this depends on users setting topics while posting.


Kind regards,
Christian Mack
--
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] regarding specific mail ids

2011-04-06 Thread Arun Gupta


First of all thanks for your response, Is it any way to customize my 
mailman to achieve my goal please give me some clue or some document.


Regards,

Arun Kumar Gupta

=


On Tue, 5 Apr 2011, Mark Sapiro wrote:


Arun Gupta wrote:


I have a one mailing list t...@example.com and there is 10 people (mail ids) i
have added, Is it possible if a...@example.com send mail to t...@example.com
mailing list then out of 10 only 5 people get the mails (i want to deliver
specific mail ids) and if b...@example.com send mail to t...@example.com then 
all
people should get the mails.



It is not possible in standard Mailman to select a subset of list
members to receive a post based on who posted.

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


--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.



--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

--
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] regarding specific mail ids

2011-04-05 Thread Mark Sapiro
Arun Gupta wrote:
>
>I have a one mailing list t...@example.com and there is 10 people (mail ids) i 
>have added, Is it possible if a...@example.com send mail to t...@example.com 
>mailing list then out of 10 only 5 people get the mails (i want to deliver 
>specific mail ids) and if b...@example.com send mail to t...@example.com then 
>all 
>people should get the mails.


It is not possible in standard Mailman to select a subset of list
members to receive a post based on who posted.

-- 
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] regarding specific mail ids

2011-04-05 Thread Arun Gupta


Hi,

I have a one mailing list t...@example.com and there is 10 people (mail ids) i 
have added, Is it possible if a...@example.com send mail to t...@example.com 
mailing list then out of 10 only 5 people get the mails (i want to deliver 
specific mail ids) and if b...@example.com send mail to t...@example.com then all 
people should get the mails.


Please tell me procedure and settings


Thanks & Regards,

Arun Kumar Gupta

=


--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

--
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