<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=utf-8">
</head>
<body>
<div style="font-family:sans-serif"><div style="white-space:normal">
<p dir="auto">Somehow I don’t have the Mailing Lists smart mailbox. I have a number of smart mailboxes under Examples, but not that one. I’m wondering which other default smart mailboxes I’m missing. Is there an easy way to recreate them?</p>
<p dir="auto">ajk</p>
<p dir="auto">On 3 Jun 2021, at 1:08, Ethan Schoonover wrote:</p>
<blockquote style="border-left:2px solid #777; color:#777; margin:0 0 5px; padding-left:5px">
<p dir="auto"><strong>Note:</strong> This message contains a change to prioritize the List-ID where present and non-gibberish. Probably the best approach. Unless someone has feedback I'd propose this as the final version. Benny, any chance you'd consider making this the Mailing List submailbox name default format string?</p>
<p dir="auto">-Ethan Schoonover<br>
<a href="mailto:es@ethanschoonover.com" style="color:#777">es@ethanschoonover.com</a><br>
<a href="https://ethanschoonover.com" style="color:#777">https://ethanschoonover.com</a></p>
<h1 style="font-size:1.4em">Better MailMate Mailing List Submailbox Naming (v3)</h1>
<h2 style="font-size:1.2em">Quick instructions</h2>
<ol>
<li>Double click your "Mailing Lists" smart mailbox in MailMate</li>
<li>Select the "Submailboxes" tab</li>
<li>Copy the following code (this is the same as the <strong>CLEAN VERSION</strong> snipped below) and paste it into your Mailing Lists > Submailboxes > Mailbox Name Format field.</li>
</ol>
<p dir="auto">Be careful when copying: the string is long and the overflow may be clipped “off the page.”</p>
<pre style="background-color:#F7F7F7; border-radius:5px 5px 5px 5px; margin-left:15px; margin-right:15px; max-width:90vw; overflow-x:auto; padding:5px" bgcolor="#F7F7F7"><code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0" bgcolor="#F7F7F7">${list-id.description:?${list-id.description/^[a-z]*\d.*/${subject.blob:?${subject.blob:/capitalize}:${from.name:${list-id.identifier.final-level:?${list-id.identifier.final-level:/capitalize}:${from.address}}}}/}:${subject.blob:?${subject.blob:/capitalize}:${from.name:${list-id.identifier.final-level:?${list-id.identifier.final-level:/capitalize}:${from.address}}}}}
</code></pre>
<h2 style="font-size:1.2em">Summary</h2>
<p dir="auto">This submailbox string will look for each of the following variables from the mailing list messages in turn, choosing the first that is available based on the order presented below.</p>
<p dir="auto">In the special case of the List ID, these sometimes return a gibberish (to human eyes) alphanumeric string of characters. In those cases, the List-ID is not used (technically it is used but regex replaced with the options from the remainder of the sequence below).</p>
<h3 style="font-size:1.1em">Options for list naming, in order</h3>
<ol>
<li>List ID Description (if not all alphanumerics; if alphanumerics only, then continue with options below)</li>
<li>Subject Blob</li>
<li>From Name</li>
<li>List ID Identifier (final part)</li>
<li>From Address</li>
</ol>
<p dir="auto">Below you will find three versions of the code for this mailing list naming string. The nested version is easy to read, the "commented" version can be pasted in so you can see how your lists names are being assigned, and the "clean" version is uncommented and what you will ultimately want to use.</p>
<h2 style="font-size:1.2em">Commented Code - Nested format (DO NOT PASTE IN, FOR REFERENCE ONLY)</h2>
<pre style="background-color:#F7F7F7; border-radius:5px 5px 5px 5px; margin-left:15px; margin-right:15px; max-width:90vw; overflow-x:auto; padding:5px" bgcolor="#F7F7F7"><code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0" bgcolor="#F7F7F7">${list-id.description:?
        [[HAS-LISTID]] ${list-id.description/^[a-z]*\d.*/
                [[BAD-LISTID]] ${subject.blob:?
                        [[HAS-SUB-BLOB]] ${subject.blob:/capitalize}:
                        [[NO-SUB-BLOB]] ${from.name:
                                [[NO-FROM-NAME]] ${list-id.identifier.final-level:?
                                        [[HAS-LISTID-FINAL]] ${list-id.identifier.final-level:/capitalize}:
                                        [[NO-LISTID-FINAL]] ${from.address}
                                }
                        }
                }
        /}:
        [[NO-LISTID]] ${subject.blob:?
                [[HAS-SUB-BLOB]] ${subject.blob:/capitalize}:
                [[NO-SUB-BLOB]] ${from.name:
                        [[NO-FROM-NAME]] ${list-id.identifier.final-level:?
                                [[HAS-LISTID-FINAL]] ${list-id.identifier.final-level:/capitalize}:
                                [[NO-LISTID-FINAL]] ${from.address}
                        }
                }
        }
}
</code></pre>
<h2 style="font-size:1.2em">Commented</h2>
<p dir="auto">Paste this if you want to see how it works with your lists.</p>
<pre style="background-color:#F7F7F7; border-radius:5px 5px 5px 5px; margin-left:15px; margin-right:15px; max-width:90vw; overflow-x:auto; padding:5px" bgcolor="#F7F7F7"><code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0" bgcolor="#F7F7F7">${list-id.description:?[[HAS-LISTID]] ${list-id.description/^[a-z]*\d.*/[[BAD-LISTID]] ${subject.blob:?[[HAS-SUB-BLOB]] ${subject.blob:/capitalize}:[[NO-SUB-BLOB]] ${from.name:[[NO-FROM-NAME]] ${list-id.identifier.final-level:?[[HAS-LISTID-FINAL]] ${list-id.identifier.final-level:/capitalize}:[[NO-LISTID-FINAL]] ${from.address}}}}/}:[[NO-LISTID]] ${subject.blob:?[[HAS-SUB-BLOB]] ${subject.blob:/capitalize}:[[NO-SUB-BLOB]] ${from.name:[[NO-FROM-NAME]] ${list-id.identifier.final-level:?[[HAS-LISTID-FINAL]] ${list-id.identifier.final-level:/capitalize}:[[NO-LISTID-FINAL]] ${from.address}}}}}
</code></pre>
<h2 style="font-size:1.2em">CLEAN VERSION (no comments)</h2>
<p dir="auto">Paste this in if you just want better list names and don't need to see how it's working.</p>
<pre style="background-color:#F7F7F7; border-radius:5px 5px 5px 5px; margin-left:15px; margin-right:15px; max-width:90vw; overflow-x:auto; padding:5px" bgcolor="#F7F7F7"><code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0" bgcolor="#F7F7F7">${list-id.description:?${list-id.description/^[a-z]*\d.*/${subject.blob:?${subject.blob:/capitalize}:${from.name:${list-id.identifier.final-level:?${list-id.identifier.final-level:/capitalize}:${from.address}}}}/}:${subject.blob:?${subject.blob:/capitalize}:${from.name:${list-id.identifier.final-level:?${list-id.identifier.final-level:/capitalize}:${from.address}}}}}
</code></pre>
<h2 style="font-size:1.2em">ORIGINAL MailMate Mailing Lists Subfolder Format String</h2>
<p dir="auto">Paste this in if you want to revert to the original MailMate behavior.</p>
<pre style="background-color:#F7F7F7; border-radius:5px 5px 5px 5px; margin-left:15px; margin-right:15px; max-width:90vw; overflow-x:auto; padding:5px" bgcolor="#F7F7F7"><code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0" bgcolor="#F7F7F7">${list-id.description:${subject.blob:?${subject.blob:/capitalize}:${list-id.identifier.final-level}}}
</code></pre>
<hr style="background:#333; background-image:linear-gradient(to right, #ccc, #333, #ccc); border:0; height:1px" height="1">
<p dir="auto">mailmate mailing list<br>
<a href="mailto:mailmate@lists.freron.com" style="color:#777">mailmate@lists.freron.com</a><br>
<a href="https://lists.freron.com/listinfo/mailmate" style="color:#777">https://lists.freron.com/listinfo/mailmate</a></p>
</blockquote>

</div></div>
</body>
</html>