On 18 Feb 2015, at 10:43, Mike Brasch wrote:

I'm trying to make the names of submailboxes are named by their folder without the full path. Currently I'm using the default

        ${#source.path.noinbox}

which leads into folder names like

        Mailinglisten/MailMate

Now I want remove the "Mailinglisten/". How can I do this.

You can use a regular expression in the format string like this:

        ${#source.path.noinbox/Mailinglisten\///}

It says, replace `Mailinglisten/` with the empty string. It becomes a bit unreadably because of the escaped `"/"` character.

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?).

My first step should probably be to document the feature :-)

--
Benny
_______________________________________________
mailmate mailing list
mailmate@lists.freron.com
http://lists.freron.com/listinfo/mailmate

Reply via email to