<div class="markdown">
<p dir="auto">On 18 Feb 2015, at 10:43, Mike Brasch wrote:</p>

<blockquote>
<p dir="auto">I'm trying to make the names of submailboxes are named by their folder without the full path. Currently I'm using the default</p>

<pre><code>${#source.path.noinbox}
</code></pre>

<p dir="auto">which leads into folder names like</p>

<pre><code>Mailinglisten/MailMate
</code></pre>

<p dir="auto">Now I want remove the "Mailinglisten/". How can I do this.</p>
</blockquote>

<p dir="auto">You can use a regular expression in the format string like this:</p>

<pre><code>${#source.path.noinbox/Mailinglisten\///}
</code></pre>

<p dir="auto">It says, replace <code>Mailinglisten/</code> with the empty string. It becomes a bit unreadably because of the escaped <code>"/"</code> character.</p>

<blockquote>
<p dir="auto">Maybe a feature request: it would be very helpful to have something like a code completion menu to see an overview of the possible values (what is the correct name for this?).</p>
</blockquote>

<p dir="auto">My first step should probably be to document the feature :-)</p>

<p dir="auto">-- <br>
Benny</p>

</div>