[Mailman-Users] Expiration on moderated requests

2007-01-26 Thread Rob Jackson
I am looking into a way to expire any moderated requests that are older than
2 weeks.
 
Has this been discussed before? 
 
-Rob
 
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


[Mailman-Users] VERP and AOL feedback

2006-12-04 Thread Rob Jackson
I have read a couple threads on this, but none have really been able to help
me.
 
I need to get the AOL feedback to work, but I need more header information.
VERP works great if it wasn't for one problem.  We have a HUGE customer
base, and this changes header information that the customer sees.
 
Is there anyway I could add header like X-Member.  This way it does not
interfere with what they see, or use for filtering.  I have added custom
headers already to our mailings, but I am not sure how I would go about
getting the actual e-mail address of the customer in there.
 
Thanks
-Rob
 
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


[Mailman-Users] Rate limit by domain/mx

2006-11-17 Thread Rob Jackson
I know this isn't really a mailman issue, but I was just curious, those that
need rate limiting, what are you using?
 
I really need this set up, we have one list in paticular that has almost
1500 AOL subscribers, which is an announce only list, but the owner sends
out about 6 announcements at the same time flooding AOL with 9,000 messages,
and as fast as our MTA can handle.  Right now we are using sendmail 8.13.8.
 
Thanks
-Rob
 
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


[Mailman-Users] Newgroup gatway and specific user rights

2006-10-24 Thread Rob Jackson
I have several newgroup gateways set up, but I need to tweak it a little.  I
have a two sets of users.  One set is LIST ONLY, and the other set is LIST
and NEWSGROUP.  Is there a way I can set this up in mailman?
 
-Rob
 
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


[Mailman-Users] I need to get Sender: address

2006-09-29 Thread Rob Jackson
I have messages coming from a Gatewayed Message board to mailman.  There is
an extra field To: field and a Sender: field and I need to get the Sender
e-mail address.
 
I have tried modifying the SENDER_HEADERS to
('sender','from',None,'reply-to'), so sender is before from, but it still
grabs the From even if Sender exists.
 
-Rob
 
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] I need to get Sender: address

2006-09-29 Thread Rob Jackson
Great, thanks, that worked.  I read about the USE_ENVELOPE_SENDER, but it
did not seem that it applied, a little confused there.

Thanks
-Rob
 

-Original Message-
From: Mark Sapiro [mailto:[EMAIL PROTECTED] 
Sent: Friday, September 29, 2006 12:42 PM
To: Rob Jackson; mailman-users@python.org
Subject: Re: [Mailman-Users] I need to get Sender: address

Rob Jackson wrote:

I have messages coming from a Gatewayed Message board to mailman.  
There is an extra field To: field and a Sender: field and I need to get 
the Sender e-mail address.
 
I have tried modifying the SENDER_HEADERS to 
('sender','from',None,'reply-to'), so sender is before from, but it 
still grabs the From even if Sender exists.


Which headers are searched and in which order depends on several things
including context. You probably need to set USE_ENVELOPE_SENDER to Yes in
mm_cfg.py.

Here are the details:

There are two Mailman.Message.Message methods for getting the sender.
They are get_sender() and get_senders().

If USE_ENVELOPE_SENDER is Yes or True, get_sender() returns the first
address found from the headers Sender:, From:, and the unixfrom or envelope
sender. Otherwise the search order is From:, Sender:, unixfrom.

OTOH, get_senders() returns a list of all the addresses found in all the
headers listed in SENDER_HEADERS.

Thus, changing SENDER_HEADERS has no effect on the address returned by
get_sender() and  reordering SENDER_HEADERS only affects the order of the
addresses returned by get_senders().

The distinction is important, because in some contexts (e.g.
determining whether the sender is a list member), get_senders() is used to
get a list of addresses, whereas in other contexts (e.g.
determining if the sender is in *_these_nonmembers), get_sender() is used to
get a single address.

-- 
Mark Sapiro [EMAIL PROTECTED]   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://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


[Mailman-Users] Announce ONLY list

2006-09-18 Thread Rob Jackson
I need to create an announce only list, where people can subscribe, but they
cannot post.  I also have other lists that I will need to create continually
that will not be this way.
 
Is there a bit I can set for this list only so the subscribers cannot post.
 
Thanks
-Rob
 
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


[Mailman-Users] Sendmail can't keep up with qfiles/out director

2006-08-24 Thread Rob Jackson
Our mail server is getting overloaded and the out directory will hit over
7,000 in just one day, and we can't clear them out fast enough.
 
We are using Sendmail as our MTA.
 
How can we speed things up?
 
-Rob
 
 
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


[Mailman-Users] Move addresses from To: to Cc:

2006-08-02 Thread Rob Jackson
I want to be able to make all addresses that are put into the To: field when
a message is sent to the list into the Cc: field, so that when someone
replies to this particular message, all the other addresses do not get
replied to.  I want to make it so they need to use Reply to All in order to
do this.  Is there a setting for this, or will I need to modify code?
 
-Rob
 
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


[Mailman-Users] Double unsubscribe messages

2006-07-13 Thread Rob Jackson
If you put the word unsubscribe in both the subject and the body, I am
getting 2 unsubscribe messages.  Each message has a uniq link to
unsubscribe, but the both get sent out from the same unsubscribe message.
 
If you only put it in the subject, you get a single unsubscribe message.
 
Where would be the best place to start looking as to why this is happening?
 
-Rob
 
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Double unsubscribe messages

2006-07-13 Thread Rob Jackson
 You know what...I just commented out the password check function so it
immediately removes the user without the use of a password so no
confirmation is needed.  This takes care of the issue because the user will
get unsubscribed before the body command can be processed. 

But I did learn that this is how the process is supposed to work.  I just
needed to make sure it wasn't something I did to break it.

-Rob

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of Rob Jackson
Sent: Thursday, July 13, 2006 11:00 AM
To: mailman-users@python.org
Subject: [Mailman-Users] Double unsubscribe messages

If you put the word unsubscribe in both the subject and the body, I am
getting 2 unsubscribe messages.  Each message has a uniq link to
unsubscribe, but the both get sent out from the same unsubscribe message.
 
If you only put it in the subject, you get a single unsubscribe message.
 
Where would be the best place to start looking as to why this is happening?
 
-Rob
 
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe:
http://mail.python.org/mailman/options/mailman-users/robertj%40linux4free.co
m

Security Policy:
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


[Mailman-Users] Radio button options for message size

2006-06-29 Thread Rob Jackson
I don't want to give the admin the choice to put in any number they want,
instead I want options, like 10k, 20k, 40k, 80k, and so forth.  Right now,
the way mailman is set up, each radio button will represent a placement.  So
right now, 10k will be 0, 20k will be 1, 40k will be 2, 80k will be 3 and so
forth.  Is there a way I can change this?
 
Thanks
-Rob
 
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Custom footer based on sender's email

2006-06-29 Thread Rob Jackson
Due to a change in the Message board, the messages come through as
multipart/mixed.

If I try to run this in the multipart/mixed section of Decorate.py, I get:

TypeError: expected string or buffer.

What needs to be done to make this work properly?

Thanks
-Rob
 

-Original Message-
From: Rob Jackson [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 15, 2006 2:49 PM
To: 'Rob Jackson'; 'Mark Sapiro'; mailman-users@python.org
Subject: RE: [Mailman-Users] Custom footer based on sender's email

I found a fix the the problem.  Charset is set to UTF-8, and I changed it to
us-ascii, and it works great now.

-Rob
 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of Rob Jackson
Sent: Monday, May 15, 2006 12:26 PM
To: 'Mark Sapiro'; mailman-users@python.org
Subject: Re: [Mailman-Users] Custom footer based on sender's email

Ok, I got this piece kind of working, but there is a problem with this.

This is my search and replace string, and the search at this point doesn't
matter.

pl = re.sub('lksjdfsdf', 'new text', pl)

Here is the last part of the body, it is all contained in one line:

You received this e-mail because you are currently subscribed to this
message board alert. To unsubscribe from this alert, or to change your
settings to receive a digest version instead, please visit My Alerts.

After this message goes through mailman, this is how it comes out on the
other side:

jZ;]yay%hh?hjfzjCj?k-yM:4r^=JjgV'qbsOyDKijljw,gZ,j
}z?Ox^=by?m+m?y?+.n+a?Oy?zS?~jWZ zb
-z+i?zozx?v^j??3 %zl

If I add, or remove a letter to the orginal footer, anywhere, or change any
one of the punctuation marks to a letter, it will come through clean, and
not garbled.

I am stumped!







 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of Mark Sapiro
Sent: Thursday, May 11, 2006 3:53 PM
To: mailman-users@python.org
Subject: Re: [Mailman-Users] Custom footer based on sender's email

Mark Sapiro wrote:

Rob Jackson wrote:

snip
+pl = msg.get_payload(decode=True)
+re.sub('AZ', 'new text', pl)
+msg.set_payload(pl)
snip

It looks OK to me.

Actually, it's not OK. I overlooked the fact that Python strings are
immutable and re.sub doesn't (can't) change them in place. Thus,

re.sub('AZ', 'new text', pl)

needs to be

pl = re.sub('AZ', 'new text', pl)

-- 
Mark Sapiro [EMAIL PROTECTED]   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://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe:
http://mail.python.org/mailman/options/mailman-users/robertj%40linux4free.co
m

Security Policy:
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe:
http://mail.python.org/mailman/options/mailman-users/robertj%40linux4free.co
m

Security Policy:
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


[Mailman-Users] -owner -admin

2006-06-26 Thread Rob Jackson
I am trying to change the umbrella member suffix to -admin.  I want -admin
to do the same thing as -owner.  So I changed it, but there is a problem
When I send any messges to -admin, they don't go through.  I get Uncaught
bounce notification  But I can still send messages to -owner.  
 
Why doesn't the -admin work?
 
-Rob
 
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


[Mailman-Users] Subscribe to both list and digest

2006-06-26 Thread Rob Jackson
I need to be able to let users subscribe to both the active list and the
digests.  From what I can see, this can't be done.  Anybody have an idea how
I can accomplish this?
 
 
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


[Mailman-Users] Digest subscription without password

2006-06-26 Thread Rob Jackson
It seems somewhat strange that you can subscribe yourself to a list without
a password, but in order to subscribe to a digest you are required to supply
a password.
 
What would be the best way around this?
 
 
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Digest subscription without password

2006-06-26 Thread Rob Jackson
So far I have have got this to work with the -request, but only if I supply
a password.  It wil not work with -subscribe at all for digest mode.  On the
-request, if I supply a password, the user will have the digest bit set.  If
I do not set the password, the digest bit will not be set.

This is not working for me:

subscribe [$$PASSWORD$$] [digest|nodigest] [address=$$ADDRESS$$]

* Subscribe to this mailing list. Your password must be given to
unsubscribe or change your options, but if you omit the password, one will
be generated for you. You may be periodically reminded of your password.

  The next argument may be either: `nodigest' or `digest' (no quotes!).
If you wish to subscribe an address other than the address you sent this
request from, you may specify `address=$$ADDRESS$$' (no brackets around
the email address, and no quotes!) 


 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of Rob Jackson
Sent: Monday, June 26, 2006 1:53 PM
To: mailman-users@python.org
Subject: [Mailman-Users] Digest subscription without password

It seems somewhat strange that you can subscribe yourself to a list without
a password, but in order to subscribe to a digest you are required to supply
a password.
 
What would be the best way around this?
 
 
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe:
http://mail.python.org/mailman/options/mailman-users/robertj%40linux4free.co
m

Security Policy:
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Subscribe to both list and digest

2006-06-26 Thread Rob Jackson
Our current list software enables some users...mostly admins to subscribe to
both.  They tend to like that functionality, but I will see if they can do
without.

Thanks
-Rob
 

-Original Message-
From: Mark Sapiro [mailto:[EMAIL PROTECTED] 
Sent: Monday, June 26, 2006 3:48 PM
To: Rob Jackson; mailman-users@python.org
Subject: Re: [Mailman-Users] Subscribe to both list and digest

Rob Jackson wrote:

I need to be able to let users subscribe to both the active list and 
the digests.  From what I can see, this can't be done.  Anybody have an 
idea how I can accomplish this?


With current Mailman, you need to subscribe two addresses, maybe
[EMAIL PROTECTED] and [EMAIL PROTECTED] (or [EMAIL PROTECTED] or ??)
would do.

Just for curiousity, why do you need this?.

-- 
Mark Sapiro [EMAIL PROTECTED]   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://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Subscribe to both list and digest

2006-06-26 Thread Rob Jackson
They will just lose that function for now, glad to hear it is on the todo
list.

Thanks
-Rob


-Original Message-
From: Mark Sapiro [mailto:[EMAIL PROTECTED] 
Sent: Monday, June 26, 2006 4:01 PM
To: Rob Jackson; mailman-users@python.org
Subject: RE: [Mailman-Users] Subscribe to both list and digest

Rob Jackson wrote:

Our current list software enables some users...mostly admins to 
subscribe to both.  They tend to like that functionality, but I will 
see if they can do without.

Yes, I can understand the function for the admin. Can they set up forwarding
addresses somewhere?

BTW, the ability to subscribe to both message and digest is on the to do
list http://www.list.org/todo.html.

-- 
Mark Sapiro [EMAIL PROTECTED]   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://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] -owner -admin

2006-06-26 Thread Rob Jackson
That works.  I just made -admin go to owner in the alias file, and it works.
Old users are used to mailing -admin for list problems, and we wanted to
make the transition from our current list to mailman as simple as possible
for the subscribers.

Thanks
-Rob
 

-Original Message-
From: Mark Sapiro [mailto:[EMAIL PROTECTED] 
Sent: Monday, June 26, 2006 4:19 PM
To: Rob Jackson; mailman-users@python.org
Subject: Re: [Mailman-Users] -owner -admin

Rob Jackson wrote:

I am trying to change the umbrella member suffix to -admin.  I want 
-admin to do the same thing as -owner.  So I changed it, but there is a 
problem When I send any messges to -admin, they don't go through.  I 
get Uncaught bounce notification  But I can still send messages to
-owner.
 
Why doesn't the -admin work?

Because -admin is a (deprecated) synonym for -bounces, not for -owner.
Why don't you want to use -owner?

-- 
Mark Sapiro [EMAIL PROTECTED]   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://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Custom footer based on sender's email

2006-05-15 Thread Rob Jackson
Ok, I got this piece kind of working, but there is a problem with this.

This is my search and replace string, and the search at this point doesn't
matter.

pl = re.sub('lksjdfsdf', 'new text', pl)

Here is the last part of the body, it is all contained in one line:

You received this e-mail because you are currently subscribed to this
message board alert. To unsubscribe from this alert, or to change your
settings to receive a digest version instead, please visit My Alerts.

After this message goes through mailman, this is how it comes out on the
other side:

jZ;]yay%hh?hjfzjCj?k-yM:4r^=JjgV'qbsOyDKijljw,gZ,j
}z?Ox^=by?m+m?y?+.n+a?Oy?zS?~jWZ zb
-z+i?zozx?v^j??3 %zl

If I add, or remove a letter to the orginal footer, anywhere, or change any
one of the punctuation marks to a letter, it will come through clean, and
not garbled.

I am stumped!







 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of Mark Sapiro
Sent: Thursday, May 11, 2006 3:53 PM
To: mailman-users@python.org
Subject: Re: [Mailman-Users] Custom footer based on sender's email

Mark Sapiro wrote:

Rob Jackson wrote:

snip
+pl = msg.get_payload(decode=True)
+re.sub('AZ', 'new text', pl)
+msg.set_payload(pl)
snip

It looks OK to me.

Actually, it's not OK. I overlooked the fact that Python strings are
immutable and re.sub doesn't (can't) change them in place. Thus,

re.sub('AZ', 'new text', pl)

needs to be

pl = re.sub('AZ', 'new text', pl)

-- 
Mark Sapiro [EMAIL PROTECTED]   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://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe:
http://mail.python.org/mailman/options/mailman-users/robertj%40linux4free.co
m

Security Policy:
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Custom footer based on sender's email

2006-05-15 Thread Rob Jackson
I found a fix the the problem.  Charset is set to UTF-8, and I changed it to
us-ascii, and it works great now.

-Rob
 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of Rob Jackson
Sent: Monday, May 15, 2006 12:26 PM
To: 'Mark Sapiro'; mailman-users@python.org
Subject: Re: [Mailman-Users] Custom footer based on sender's email

Ok, I got this piece kind of working, but there is a problem with this.

This is my search and replace string, and the search at this point doesn't
matter.

pl = re.sub('lksjdfsdf', 'new text', pl)

Here is the last part of the body, it is all contained in one line:

You received this e-mail because you are currently subscribed to this
message board alert. To unsubscribe from this alert, or to change your
settings to receive a digest version instead, please visit My Alerts.

After this message goes through mailman, this is how it comes out on the
other side:

jZ;]yay%hh?hjfzjCj?k-yM:4r^=JjgV'qbsOyDKijljw,gZ,j
}z?Ox^=by?m+m?y?+.n+a?Oy?zS?~jWZ zb
-z+i?zozx?v^j??3 %zl

If I add, or remove a letter to the orginal footer, anywhere, or change any
one of the punctuation marks to a letter, it will come through clean, and
not garbled.

I am stumped!







 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of Mark Sapiro
Sent: Thursday, May 11, 2006 3:53 PM
To: mailman-users@python.org
Subject: Re: [Mailman-Users] Custom footer based on sender's email

Mark Sapiro wrote:

Rob Jackson wrote:

snip
+pl = msg.get_payload(decode=True)
+re.sub('AZ', 'new text', pl)
+msg.set_payload(pl)
snip

It looks OK to me.

Actually, it's not OK. I overlooked the fact that Python strings are
immutable and re.sub doesn't (can't) change them in place. Thus,

re.sub('AZ', 'new text', pl)

needs to be

pl = re.sub('AZ', 'new text', pl)

-- 
Mark Sapiro [EMAIL PROTECTED]   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://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe:
http://mail.python.org/mailman/options/mailman-users/robertj%40linux4free.co
m

Security Policy:
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe:
http://mail.python.org/mailman/options/mailman-users/robertj%40linux4free.co
m

Security Policy:
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Custom footer based on sender's email

2006-05-11 Thread Rob Jackson
Sorry about that.  I could be going about this all wrong.  Also, I am fairly
new to python, I normally do perl, so learning how this softwar works has
been just a little difficult.

Here it is.

+++ /u1/mailman/Mailman/Handlers/Decorate.py2006-05-10
11:36:43.0 -0600
@@ -188,6 +188,12 @@
 del msg['content-disposition']
 msg['Content-Type'] = 'multipart/mixed'

+#Testing to replace footer
+pl = msg.get_payload(decode=True)
+re.sub('AZ', 'new text', pl)
+msg.set_payload(pl)
+
+

 def decorate(mlist, template, what, extradict={}):
 

-Original Message-
From: Mark Sapiro [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 10, 2006 12:42 PM
To: Rob Jackson; mailman-users@python.org
Subject: RE: [Mailman-Users] Custom footer based on sender's email

Rob Jackson wrote:

This is the diff on the Decorate.py

191,196d190
 #Testing to replace footer
 pl = msg.get_payload(decode=True)
 re.sub('AZ', 'new text', pl)
 msg.set_payload(pl)



Please either give me a unified context diff (diff -u) or at least tell me
what Mailman version this is.

-- 
Mark Sapiro [EMAIL PROTECTED]   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://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Custom footer based on sender's email

2006-05-11 Thread Rob Jackson
I was aware of the

if not header and not footer:
return

And made sure that wasn't a problem.  But it seems I was probably exiting
out someplace else.  I used to be getting an error when I had it other
places, and then when I moved it to the end, the error went away, well it is
back now that I am actualy hitting the code before it exits.  Here is my
error.  Thanks for helping out with my ignorance.

May 11 11:54:49 2006 (11951) Uncaught runner exception: global name 're' is
not defined

What is the best way to define 're'  I have tried looking at other examples
throught the program and have been unable to determine how I need to do
this.

Thanks
-Rob



-Original Message-
From: Mark Sapiro [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 11, 2006 11:46 AM
To: Rob Jackson; mailman-users@python.org
Subject: RE: [Mailman-Users] Custom footer based on sender's email

Rob Jackson wrote:

Here it is.

+++ /u1/mailman/Mailman/Handlers/Decorate.py2006-05-10
11:36:43.0 -0600
@@ -188,6 +188,12 @@
 del msg['content-disposition']
 msg['Content-Type'] = 'multipart/mixed'

+#Testing to replace footer
+pl = msg.get_payload(decode=True)
+re.sub('AZ', 'new text', pl)
+msg.set_payload(pl)
+
+

 def decorate(mlist, template, what, extradict={}):


Elvis has left the building...

I.e. putting the code there will only get those messages in which the
mailman header/footer has been added as a separate mime part to a message
not already multipart/mixed.

Starting from the top of Decorate.process() we have several exits:

# Escape hatch if both the footer and header are empty
if not header and not footer:
return

If there is no defined msg_header or msg_footer, we leave.


# If we couldn't add the header or footer in a less intrusive way, we
can
# at least do it by MIME encapsulation.  We want to keep as much of the
# outer chrome as possible.
if not wrap:
return

If we have managed to add the header and/or footer to a text/plain message,
or if the message was already multipart/mixed and we added the header and/or
footer as separate mime parts, we are done and leave here.

The only thing that gets beyond here is the case where we create a new
multipart/mixed 'wrapper' with header and/or footer parts and the original
message as a message/rfc822 part.

You first have to see whether or not you have msg_header and or msg_footer
for the list, and also what the structure of the incoming message is. In the
simplest case of a single part text/plain message, you could add the three
lines just prior to

# Escape hatch if both the footer and header are empty
if not header and not footer:
return

-- 
Mark Sapiro [EMAIL PROTECTED]   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://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Custom footer based on sender's email

2006-05-11 Thread Rob Jackson
Ok, never mind on the problem with re, I don't know why I couldln't figure
that out before, I just didn't look hard enough.  Although it still doesn't
work.  Here is what I have now.


--- /u1/mailman1/Mailman/Handlers/Decorate.py   2006-02-24
17:31:06.0 -0700
+++ Decorate.py 2006-05-11 12:14:22.0 -0600
@@ -20,6 +20,7 @@
 from types import ListType
 from email.MIMEText import MIMEText

+import re
 from Mailman import mm_cfg
 from Mailman import Utils
 from Mailman import Errors
@@ -66,6 +67,15 @@
 header = decorate(mlist, mlist.msg_header, 'non-digest header', d)
 footer = decorate(mlist, mlist.msg_footer, 'non-digest footer', d)
 # Escape hatch if both the footer and header are empty
+
+sender = msgdata.get('original_sender', msg.get_sender())
+if sender == 'email-address':
+   footer = THIS IS A GATEWAY MESSAGE
+
+pl = msg.get_payload(decode=True)
+re.sub('AZ', 'new text', pl)
+msg.set_payload(pl)
+
 if not header and not footer:
 return



 # Be MIME smart here.  We only attach the header and footer by
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of Rob Jackson
Sent: Thursday, May 11, 2006 12:07 PM
To: 'Mark Sapiro'; mailman-users@python.org
Subject: Re: [Mailman-Users] Custom footer based on sender's email

I was aware of the

if not header and not footer:
return

And made sure that wasn't a problem.  But it seems I was probably exiting
out someplace else.  I used to be getting an error when I had it other
places, and then when I moved it to the end, the error went away, well it is
back now that I am actualy hitting the code before it exits.  Here is my
error.  Thanks for helping out with my ignorance.

May 11 11:54:49 2006 (11951) Uncaught runner exception: global name 're' is
not defined

What is the best way to define 're'  I have tried looking at other examples
throught the program and have been unable to determine how I need to do
this.

Thanks
-Rob



-Original Message-
From: Mark Sapiro [mailto:[EMAIL PROTECTED]
Sent: Thursday, May 11, 2006 11:46 AM
To: Rob Jackson; mailman-users@python.org
Subject: RE: [Mailman-Users] Custom footer based on sender's email

Rob Jackson wrote:

Here it is.

+++ /u1/mailman/Mailman/Handlers/Decorate.py2006-05-10
11:36:43.0 -0600
@@ -188,6 +188,12 @@
 del msg['content-disposition']
 msg['Content-Type'] = 'multipart/mixed'

+#Testing to replace footer
+pl = msg.get_payload(decode=True)
+re.sub('AZ', 'new text', pl)
+msg.set_payload(pl)
+
+

 def decorate(mlist, template, what, extradict={}):


Elvis has left the building...

I.e. putting the code there will only get those messages in which the
mailman header/footer has been added as a separate mime part to a message
not already multipart/mixed.

Starting from the top of Decorate.process() we have several exits:

# Escape hatch if both the footer and header are empty
if not header and not footer:
return

If there is no defined msg_header or msg_footer, we leave.


# If we couldn't add the header or footer in a less intrusive way, we
can
# at least do it by MIME encapsulation.  We want to keep as much of the
# outer chrome as possible.
if not wrap:
return

If we have managed to add the header and/or footer to a text/plain message,
or if the message was already multipart/mixed and we added the header and/or
footer as separate mime parts, we are done and leave here.

The only thing that gets beyond here is the case where we create a new
multipart/mixed 'wrapper' with header and/or footer parts and the original
message as a message/rfc822 part.

You first have to see whether or not you have msg_header and or msg_footer
for the list, and also what the structure of the incoming message is. In the
simplest case of a single part text/plain message, you could add the three
lines just prior to

# Escape hatch if both the footer and header are empty
if not header and not footer:
return

-- 
Mark Sapiro [EMAIL PROTECTED]   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://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe:
http://mail.python.org/mailman/options/mailman-users/robertj%40linux4free.co
m

Security Policy:
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org

Re: [Mailman-Users] Custom footer based on sender's email

2006-05-10 Thread Rob Jackson
Ok, I have been trying to use this in several places without success.  I
have added to the Decorate.py and even tried to add it to my custom module
used for a global incoming gateway.  I replaced the re.sub line with:

re.sub('AZ', 'new text', pl)

In the message that I send, I only put AZ in the body of the message.  I do
not get any errors, but nothing happens to the message.  The AZ does not get
replaced.

Is there something else I need to do to get this working.  I am about to use
procmail to do this, which I really wanted to avoid, as it will add another
step to the process.

-Rob


-Original Message-
From: Mark Sapiro [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 05, 2006 10:20 AM
To: Rob Jackson; mailman-users@python.org
Subject: Re: [Mailman-Users] Custom footer based on sender's email

That is the thing, it will be the same everytime.  It is a message 
automatically generated from a message board, unfortunatly, we are 
out-sourcing the message board and they are not capable to change the 
footer on a user level.

You can delete the incoming footer in the same place you add the new one.
You can do something like

pl = msg.get_payload(decode=True)
re.sub(pattern_matching_old_footer, replacement_footer, pl)
msg.set_payload(pl)

-- 
Mark Sapiro [EMAIL PROTECTED]   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://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Custom footer based on sender's email

2006-05-10 Thread Rob Jackson
This is the diff on the Decorate.py  I have also tried putting it other
placed throught the script without success.  There will be an if statement
that will grap the senders e-mail address so this only happens to mail
coming from my global gateway.

191,196d190
 #Testing to replace footer
 pl = msg.get_payload(decode=True)
 re.sub('AZ', 'new text', pl)
 msg.set_payload(pl)

  

-Original Message-
From: Mark Sapiro [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 10, 2006 11:27 AM
To: Rob Jackson; mailman-users@python.org
Subject: RE: [Mailman-Users] Custom footer based on sender's email

Rob Jackson wrote:

Ok, I have been trying to use this in several places without success.  
I have added to the Decorate.py and even tried to add it to my custom 
module used for a global incoming gateway.  I replaced the re.sub line
with:

re.sub('AZ', 'new text', pl)

In the message that I send, I only put AZ in the body of the message.  
I do not get any errors, but nothing happens to the message.  The AZ 
does not get replaced.


I need to see more context around what you are doing to understand what's
failing. Something like a 'diff -u' between your modified Decorate.py and
the base.

-- 
Mark Sapiro [EMAIL PROTECTED]   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://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Custom footer based on sender's email

2006-05-05 Thread Rob Jackson
That is the thing, it will be the same everytime.  It is a message
automatically generated from a message board, unfortunatly, we are
out-sourcing the message board and they are not capable to change the footer
on a user level.



-Original Message-
From: Carl Zwanzig [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 04, 2006 2:08 PM
To: Rob Jackson
Cc: mailman-users@python.org
Subject: Re: [Mailman-Users] Custom footer based on sender's email

In a flurry of recycled electrons, Rob Jackson wrote:
  Was hoping to use some regular expression and just remove some lines.  
 The lines I need to remove will always be the same.

The problem is that it won't always the the same. As you see below, now the
footer has   in front of each line. Another reply from a different MUA
might add a different prefix and wrap a line or two.
There isn't much you can count on here.

FWIW, my initial thought to the question was user training. 


 --
 Mailman-Users mailing list
 Mailman-Users@python.org
 http://mail.python.org/mailman/listinfo/mailman-users
 Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
 Searchable Archives: 
 http://www.mail-archive.com/mailman-users%40python.org/
 Unsubscribe: 
 http://mail.python.org/mailman/options/mailman-users/cpz%40tuunq.com
 
 Security Policy: 
 http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.h
 tp
 

z!

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Custom footer based on sender's email

2006-05-04 Thread Rob Jackson
 Was hoping to use some regular expression and just remove some lines.  The
lines I need to remove will always be the same.

-Rob


-Original Message-
From: Patrick Bogen [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 04, 2006 1:12 PM
To: Rob Jackson
Cc: mailman-users@python.org
Subject: Re: [Mailman-Users] Custom footer based on sender's email

On 5/4/06, Rob Jackson [EMAIL PROTECTED] wrote:
 Actually I just learned that not only do I need to add a footer, I 
 have to remove the current footer of the incoming message.

The logic behind this might be difficult. How to know where the user's
message starts and their footer begins?

--
- Patrick Bogen

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


[Mailman-Users] Custom footer based on sender's email

2006-05-03 Thread Rob Jackson
I need to figure out how to add a footer to an e-mail coming from a specific
user.   I just can't seem to figure this out.   I have created a module to
weed out the address, but now I need to munge the body of the message.
 
-Rob
 
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Global incoming gateway

2006-04-12 Thread Rob Jackson
Messages are sent from the message board real time.  The news gateway is
either set up a a cron to contact the news server to get new messages.

So unless there is something I am missing, I am not sure this will work for
what I need.

-Rob
 

-Original Message-
From: Mark Sapiro [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 11, 2006 4:32 PM
To: Rob Jackson; mailman-users@python.org
Subject: Re: [Mailman-Users] Global incoming gateway

Rob Jackson wrote:

I have a message board that I want to integrate with mailman.  Messages 
will be sent from the message board to the list.  I need a global accept
for any
list to accept messages coming from the message boards.   This setting also
needs to be either invisible or not removable from any list.


You may be able to build what you want using Mailman's cron/gate_news as a
starting point.

-- 
Mark Sapiro [EMAIL PROTECTED]   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://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Global incoming gateway

2006-04-12 Thread Rob Jackson
I already have a Message Board set up with a dummy user account, which is
actually the mailing list address.  This user is set to receive ever post to
the message board in e-mail format.  I know I can just add the from: email
address to the list of subscribers, but with many lists, and new lists being
created, I really want it to be a global accept.  I also don't want the list
admins to be able to remove this account from the subcribers.

-Rob
 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of Jeff Donsbach
Sent: Tuesday, April 11, 2006 7:28 PM
To: mailman-users@python.org
Subject: Re: [Mailman-Users] Global incoming gateway

On 4/11/06, Rob Jackson [EMAIL PROTECTED] wrote:
 I have a message board that I want to integrate with mailman.  
 Messages will be sent from the message board to the list.  I need a global
accept for any
 list to accept messages coming from the message boards.   This setting
also
 needs to be either invisible or not removable from any list.


This might get you started:
http://www.mail2forum.com/wiki/Main_Page
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe:
http://mail.python.org/mailman/options/mailman-users/robertj%40linux4free.co
m

Security Policy:
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


[Mailman-Users] Global incoming gateway

2006-04-11 Thread Rob Jackson
I have a message board that I want to integrate with mailman.  Messages will
be sent from the message board to the list.  I need a global accept for any
list to accept messages coming from the message boards.   This setting also
needs to be either invisible or not removable from any list.
 
Thanks
-Rob
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp