[Mailman-Users] Re: amending someone's email address

2001-01-12 Thread Phil Riding

on 10/1/01 3:14 am, Steve McDonald wrote:

 I'm the administrator for a number of lists and often receive a message from
 a list member alerting me to a change in their email address.  Can I amend
 their email address for them or do they have to re-subscribe to the list
 using their new address?

As far as I know, you can't amend the address as such - you need to
unsubscribe the 'old' address and then resubscribe them using the new
address (or you could tell them to do the same using their subscription
page).


Regards

Phil Riding


--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://www.python.org/mailman/listinfo/mailman-users



Re: [Mailman-Users] automatic unsubscription

2001-01-12 Thread Satya

On Jan 11, 2001 at 22:04, Bob Puff @ NLE wrote:

Ok guys, here's my feeble attempt (that works!) to allow someone to
unsubscribe by simply sending an email to a certain address.
[etc]

That's it!  The only disadvantage so far is that because the mailer runs
under the permissions from Mailman, the reply "you've been unsubscribed"
message goes to your mailman address.  If someone wants to elaborate on
this, I'd suggest using sendmail, and making the "from:" address be the same
as the original sender (what is extracted here).

That's it! Perfect! Instead of your unsub script, I'll call a Perl script
that'll extract the from address and do SMTP...

-- 
Satya. URL:http://satya.virtualave.net/
US-bound grad students! For pre-apps, see URL:http://quickapps.cjb.net/
Press every key to continue.


--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://www.python.org/mailman/listinfo/mailman-users



[Mailman-Users] Admin authentication failed 'cause of cookie

2001-01-12 Thread Stephane Thillay

 Hi,

I'm working on a fresh install with Mailman 2.0.1, Python 2.0 and
Apache 1.3.14 on a Solaris 2.6 box.

I can't reach the administrative web page for my lists. Each time I
enter the passwd (in myhost/mailman/admin/mylist) I receive a
"Authentication failed" message followed by the password form.

I tried to compare with a 'magic ports' installation on a FreeBSD 4.2
box, This one works fine, Then I discoverd that the Solaris box
doesn't send the cookie named 'mylist:admin'.

Whatever password I use (list or site), access is blocked.

In the mailing list archive, I found a message talking about an update
of Python from 1.5.5 to 2.0 that avoid proper authentication.
(http://mail.python.org/pipermail/mailman-users/2001-January/008812.html)
So I tried Python 1.6 and 1.5.2 without any success.

Any ideas ?

STh

--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://www.python.org/mailman/listinfo/mailman-users



[Mailman-Users] amending (you can do this) someone's email address

2001-01-12 Thread Christopher VanOosterhout


In fact, Mailman does include a function to do this. You can use
the command line clone_member command and not only change for a specific
list but for all lists hosted by a particular Mailman program.

Chris

At 10:24 AM 1/12/2001 +, Phil Riding wrote:
on 10/1/01 3:14 am, Steve McDonald
wrote:

 I'm the administrator for a number of lists and often receive a
message from
 a list member alerting me to a change in their email address.
Can I amend
 their email address for them or do they have to re-subscribe to the
list
 using their new address?

As far as I know, you can't amend the address as such - you need to
unsubscribe the 'old' address and then resubscribe them using the
new
address (or you could tell them to do the same using their
subscription
page).


Regards

Phil Riding


--
Mailman-Users maillist - [EMAIL PROTECTED]
http://www.python.org/mailman/listinfo/mailman-users


[Mailman-Users] Mime encoding ?

2001-01-12 Thread manolism

Is there a way to have binary attachments not encoded in the list
archives?

(a link to the file would be easier for people browsing through the
archives)



--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://www.python.org/mailman/listinfo/mailman-users



[Mailman-Users] removing articles from mailman archive

2001-01-12 Thread Brian J. Atkisson

I hoping someone can help here...  I need to purge last year's articles from
a mailman list.  I already tried:

rm -rf $prefix/archives/private/listname
$prefix/bin/arch listname

However, this didn't work.  When I ran the arch command, it simply rebuilt
the entire archive.  I would be grateful for any suggestions!

Thanks,

Brian J. Atkisson
Systems Administrator
College of Letters  Science
University of California, Santa Barbara
[EMAIL PROTECTED]


--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://www.python.org/mailman/listinfo/mailman-users



Re: [Mailman-Users] amending (you can do this) someone's email address

2001-01-12 Thread Dan Mick

Well, sorta.  clone_member means you end up with user 'b' who has the same attributes
as user 'a', but it doesn't get rid of user 'a'.  clone_member followed by a 
remove_members
might be pretty painless, though; nice find.

Christopher VanOosterhout wrote:
 
 In fact, Mailman does include a function to do this.  You can use the command line 
clone_member command and not only
 change for a specific list but for all lists hosted by a particular Mailman program.
 
 Chris
 
 At 10:24 AM 1/12/2001 +, Phil Riding wrote:
 
  on 10/1/01 3:14 am, Steve McDonald wrote:
 
   I'm the administrator for a number of lists and often receive a message from
   a list member alerting me to a change in their email address.  Can I amend
   their email address for them or do they have to re-subscribe to the list
   using their new address?
 
  As far as I know, you can't amend the address as such - you need to
  unsubscribe the 'old' address and then resubscribe them using the new
  address (or you could tell them to do the same using their subscription
  page).
 
 
  Regards
 
  Phil Riding
 
 
  --
  Mailman-Users maillist  -  [EMAIL PROTECTED]
  http://www.python.org/mailman/listinfo/mailman-users

--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://www.python.org/mailman/listinfo/mailman-users



Re: [Mailman-Users] automatic unsubscription

2001-01-12 Thread Bob [EMAIL PROTECTED]

Please keep me posted on your success with the perl!  If I knew more about Perl I 
would have tried it.  Still learning this script stuff!

Bob


Satya wrote:
 
 On Jan 11, 2001 at 22:04, Bob Puff @ NLE wrote:
 
 Ok guys, here's my feeble attempt (that works!) to allow someone to
 unsubscribe by simply sending an email to a certain address.
 [etc]
 
 That's it!  The only disadvantage so far is that because the mailer runs
 under the permissions from Mailman, the reply "you've been unsubscribed"
 message goes to your mailman address.  If someone wants to elaborate on
 this, I'd suggest using sendmail, and making the "from:" address be the same
 as the original sender (what is extracted here).
 
 That's it! Perfect! Instead of your unsub script, I'll call a Perl script
 that'll extract the from address and do SMTP...
 
 --
 Satya. URL:http://satya.virtualave.net/
 US-bound grad students! For pre-apps, see URL:http://quickapps.cjb.net/
 Press every key to continue.
 
 --
 Mailman-Users maillist  -  [EMAIL PROTECTED]
 http://www.python.org/mailman/listinfo/mailman-users

--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://www.python.org/mailman/listinfo/mailman-users



Re: [Mailman-Users] automatic unsubscription

2001-01-12 Thread Gergely Soros

You're a god, Bob!

I've modified the scriptlet so you can pass the name of the list, the 
aliases line should look like:
listname-unsub:  "|/home/mailman/test-unsub listname"
and the line changed in the script:
ladr="$[EMAIL PROTECTED]"  #list -request address


 That's it!  The only disadvantage so far is that because the mailer runs
 under the permissions from Mailman, the reply "you've been unsubscribed"
 message goes to your mailman address.  If someone wants to elaborate on
 this, I'd suggest using sendmail, and making the "from:" address be the same
 as the original sender (what is extracted here).

The sitepassword would then be mailed to the member, wouldn't it?


Thanks for your help.

Gergely Soros


--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://www.python.org/mailman/listinfo/mailman-users



[Mailman-Users] How do I get the from address?

2001-01-12 Thread Satya

How do I get the address from which the mail was sent, if I want to reply
with a confirmation request? Is it acceptable to parse the From: header
for the following Perl regexp:

.*(|\w)\@(|\w)

And the resulting match would be the address to which I can reply?

-- 
Satya. URL:http://satya.virtualave.net/
US-bound grad students! For pre-apps, see URL:http://quickapps.cjb.net/
My other computer is a HAL 9000.


--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://www.python.org/mailman/listinfo/mailman-users



Re: [Mailman-Users] How do I get the from address?

2001-01-12 Thread Dan Mick

It's almost always more complicated than you think.  See 
formail, for instance, or the rfc822 stuff in Python/Mailman.

I think your algorithm would be too simple.

 How do I get the address from which the mail was sent, if I want to reply
 with a confirmation request? Is it acceptable to parse the From: header
 for the following Perl regexp:
 
 .*(|\w)\@(|\w)
 
 And the resulting match would be the address to which I can reply?



--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://www.python.org/mailman/listinfo/mailman-users



Re: [Mailman-Users] amending someone's email address

2001-01-12 Thread Mark Lednor

Steve McDonald wrote:
 
 I'm the administrator for a number of lists and often receive a message from
 a list member alerting me to a change in their email address.  Can I amend
 their email address for them or do they have to re-subscribe to the list
 using their new address?

If you have access to the mailman account on the box then you can use
clone_member to copy the member's profile to the new address, and delete
the old address, in one operation.

Regards,

Mark.
-- 
WhoAmI: Mark Lednor (aka mlednor@cix)  Disclaimer:
Work  : [EMAIL PROTECTED] My Views ...
Email : [EMAIL PROTECTED] or [EMAIL PROTECTED] My Fault!
Demon : [EMAIL PROTECTED]  http://www.tower.demon.co.uk/


--
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://www.python.org/mailman/listinfo/mailman-users