Archive of RubyForge sup-talk mailing list
 help / color / mirror / Atom feed
From: Mark Alexander <marka@pobox.com>
To: Philippe LeCavalier <support@plecavalier.com>
Cc: sup-talk <sup-talk@rubyforge.org>
Subject: Re: [sup-talk] best method for before-add-message.rb
Date: Thu, 10 Feb 2011 11:40:38 -0500	[thread overview]
Message-ID: <1297355619-sup-8657@bloovis.org> (raw)
In-Reply-To: <1297346751-sup-70@plc.intranet.plecavalier.com>

Excerpts from Philippe LeCavalier's message of Thu Feb 10 09:44:18 -0500 2011:
> i)external file reference (would be my preferred method)
> -can't list anything other than full email addresses in the file
> @domain.com, wildcards...etc. would be nice

I'm not sure if this will help (it's pretty primitive), but here's
my before-add-message.rb, showing how to do regular expression
matches on addresses:

# Label by subject.  This is useful for messages
# generated automatically by Bugzilla or cron jobs.
case message.subj
when /\[P4 SUBMIT/
  message.add_label :p4
when /\[Bug.*project:/
  message.add_label :projbugs
when /\[Bug/
  message.add_label :bugs
when /project.*suite results/
  message.add_label :testing
end

# Label by recipients.  This is useful for mailing lists.
to_string = message.recipients.map { |t| t.email }.join(" ")
case to_string
# Personal labels
when /\bsup-(devel|talk)@rubyforge.org\b/
  message.add_label :sup
# Work labels
when /pi@widgets/
  message.add_label :pi
when /git-users@widgets/
  message.add_label :git
when /team-project@widgets/
  message.add_label :project
end

# Label by from.  This is useful for personal emails.
case message.from.email
when /@amazon/
  message.add_label :amazon
when /@facebook/
  message.add_label :facebook
when /@netflix/
  message.add_label :netflix
when /somebody@gmail.com|somebody@aol.com/
  message.add_label :somebody
end
_______________________________________________
sup-talk mailing list
sup-talk@rubyforge.org
http://rubyforge.org/mailman/listinfo/sup-talk


  reply	other threads:[~2011-02-10 17:02 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-02-10 14:44 Philippe LeCavalier
2011-02-10 16:40 ` Mark Alexander [this message]
     [not found]   ` <1297356327-sup-9107@plc.intranet.plecavalier.com>
     [not found]     ` <1297357197-sup-5893@bloovis.org>
2011-02-10 19:19       ` Philippe LeCavalier
2011-02-10 22:09         ` Philippe LeCavalier
2011-02-13  1:34           ` Moritz Wilhelmy
2011-02-13  9:51             ` Tero Tilus
2011-02-13 13:00               ` [sup-talk] How to treat List-Id headers (Was: best method for before-add-message.rb) Moritz Wilhelmy
2011-02-13 17:45               ` [sup-talk] best method for before-add-message.rb Rich Lane
2011-02-13 17:12             ` Hamish D
2011-02-13 18:08               ` Philippe LeCavalier

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1297355619-sup-8657@bloovis.org \
    --to=marka@pobox.com \
    --cc=sup-talk@rubyforge.org \
    --cc=support@plecavalier.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox