It's BROKEN. I've tried this many times, in many ways.
···
----- Original Message ----
From: Mat Schaffer <schapht@gmail.com>
To: ruby-talk ML <ruby-talk@ruby-lang.org>
Sent: Thursday, January 4, 2007 7:08:51 AM
Subject: Re: unsubscribe
We can't unsubscribe you, but you'll find these in the headers for
most mailing lists. The List-Unsubscribe header is telling you to
send an email to ruby-talk-ctl@ruby-lang.org with 'unsubscribe' in
the body.
-Mat
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
Unsubscription isn't actually broken; there are feature limits. One of
those may be that your mail client sends messages in quoted-printable
format (I checked this against the original format in gmail) as
opposed to simple plain ASCII. I know that people who use gmail have
had problems when they send their messages in UTF-8 because the
messages are encoded base64.
-austin
···
On 1/4/07, David Phillips <davidp9242a@yahoo.com> wrote:
It's BROKEN. I've tried this many times, in many ways.
Well, I'm not a fan of "works for me", but I just subscribed and unsubscribed my secondary address with no problem. I just put 'unsubscribe' in the body, left the subject blank. Sent it to ruby-talk-ctl@ruby-lang.org
And like Austin said, make sure you're sending plain text email. If you still have trouble, hopefully one of the list admins is watching and can help you sort it out.
-Mat
···
On Jan 4, 2007, at 9:33 AM, David Phillips wrote:
It's BROKEN. I've tried this many times, in many ways.
>It's BROKEN. I've tried this many times, in many ways.
Unsubscription isn't actually broken; there are feature limits. One of
those may be that your mail client sends messages in quoted-printable
format (I checked this against the original format in gmail) as
opposed to simple plain ASCII.
class Cropmail::Message
def body_matches re
if is_multipart? then
each { |p,invisible| # invisible is preamble or epilogue
return p.body_matches re unless invisible
}
else
decoded =~ re
end
end
end
mymessage.body_matches /.../u
Time for a Ruby ML Server?
Bertram
···
Am Donnerstag, 04. Jan 2007, 23:52:06 +0900 schrieb Austin Ziegler:
On 1/4/07, David Phillips <davidp9242a@yahoo.com> wrote: