Discussion:
[MlMt] custom key bindings not working
Steven M. Bellovin
2018-11-07 20:02:35 UTC
Permalink
I'm sure I'm doing something wrong, but I don't know what. I have this
text

{
"@g" = ("moveToMailbox:",
"imap://***@XXX.columbia.edu/0-good" );
"@j" = ("moveToMailbox:",
"imap://***@XXX.columbia.edu/0-bad" );
};

as /Users/smb/Library/Application Support/MailMate/smb.plist and I have
'smb'
in the Custom Key Bindings box with "Enable" checked.

Any clue what I'm doing wrong? (The purpose is to use ⌘g and ⌘j to
move
messages to my remote SpamSieve mailboxes.
(https://manual.mailmate-app.com/custom_key_bindings
says that one writes "@" instead of "⌘".)


--Steve Bellovin, https://www.cs.columbia.edu/~smb
Benny Kjær Nielsen
2018-11-16 14:08:17 UTC
Permalink
Post by Steven M. Bellovin
I'm sure I'm doing something wrong, but I don't know what. I have this
text
{
};
as /Users/smb/Library/Application Support/MailMate/smb.plist and I
have 'smb'
in the Custom Key Bindings box with "Enable" checked.
You need to remove the last semicolon, and if the mailboxes are within
the same account then this should also work (and would work for all of
your accounts):

{
"^@g" = ( "moveToMailbox:", "/0-good" );
"^@j" = ( "moveToMailbox:", "/0-bad" );
}

I've also changed the shortcuts to use ⌃⌘ since the other ones are
already taken by built-in menu items. You might want something different
or simply not use a modifier at all.
--
Benny
https://freron.com/become_a_mailmate_patron/
Loading...