<div class="markdown">
<p dir="auto">Done, that was a really informative post, thanks!</p>
<p dir="auto">In case anyone else is looking for FogBugz / MailMate customization here's what I'm using:</p>
<pre><code>subject = {
// ...
specifierCaptures = {
// ...
4 = { specifier = "body"; type="noTabs"; parsers = ( "words", "FogBugz" ); };
};
};
FogBugz = {
specifierRegex = 'FogBugz\s\(Case (\d+)\)\s([a-zA-Z0-9\s]+)-\s.+';
specifierCaptures = {
1 = { specifier = "fogbugz-case"; };
2 = { specifier = "fogbugz-project"; };
};
};
</code></pre>
<p dir="auto">--jk</p>
<p dir="auto">On 20 Mar 2014, at 12:08, Torsten Grust wrote:</p>
<blockquote>
<p dir="auto">Hi Joshua,</p>
<p dir="auto">On 20 Mar 2014, at 16:21, Joshua Kehn wrote (with possible deletions):</p>
<blockquote>
<p dir="auto">I use FogBugz and I get notification emails from the system with subjects like this:</p>
<p dir="auto">FogBugz (Case 1711) PROJECT NAME - Some Case title</p>
<p dir="auto">I could design a regular expression like:</p>
<p dir="auto">FogBugz\s(Case \d+)\s([a-zA-Z0-9\s]+)-\s.+</p>
<p dir="auto">I'd like to create distinct sub mailboxes for the matched group (Project Name). Is this possible and if so how to do it?</p>
</blockquote>
<p dir="auto">that should be entirely possible. I have used a quite similar setup<br>
for a few years now. It is described in this post to the mailing list:</p>
<pre><code>http://lists.freron.com/mailmate/2012-February/000197.html
</code></pre>
<p dir="auto">Beware: there is some plist-editing involved.</p>
<p dir="auto">Cheers,<br>
--Torsten</p>
<p dir="auto">-- <br>
| Torsten "Teggy" Grust<br>
| Torsten.Grust@gmail.com_______________________________________________<br>
mailmate mailing list<br>
<a href="mailto:mailmate@lists.freron.com">mailmate@lists.freron.com</a><br>
<a href="http://lists.freron.com/listinfo/mailmate">http://lists.freron.com/listinfo/mailmate</a></p>
</blockquote>
</div>