Re: [MlMt] Address scheme
Benny, pardon my late reply. 2015-04-17 kl 13:08 skrev Benny Kjær Nielsen: This should only happen if the window is not wide enough to display the address token. There is little I can do about that, but if this was not the problem then I'd like to know more. Yes, the pop-down menu only shows the first part of the email address. The »To« field shows the whole shebang – but then you have to remember to check it, which I forgot. As I also have a valid address to the same person – "Firstname Lastname something at gmail.com" – that pops up in the “To” field, I suppose that Mailmate somehow is trying to be helpful by picking up these kind of addresses from previous emails to this and other mailing lists. Yes, MailMate looks for previous recipients in your Sent Messages mailbox and in your Address Book (Contacts). Is it possible to get rid of this helpfulness? Yes. Look for `MmAddressCompletionMailbox` [here](http://manual.mailmate-app.com/hidden_preferences#sending). You would then need to point it at an empty mailbox (I cannot recall if providing a non-existing mailbox works). Thanks. I created a new IMAP mailbox for the purpose – I suppose this is what you mean. Will try and report back. -- Thomas ___ mailmate mailing list mailmate@lists.freron.com http://lists.freron.com/listinfo/mailmate
[MlMt] Crop the "To:" list in mail header
Hi, I keep the mail header expanded in the preview because this immediately reflects whether I am the only recipient of the mail or not. Sometimes though I receive emails with tens of addresses in the To: or CC: fields, which at the moment clutters the interface a little as the header will expand to accomodate all addresses. Would it possible to somehow crop it out and have a "show more" button? Thanks, Luca -- Luca Allodi DISI, Università degli Studi di Trento, Italy http://disi.unitn.it/~allodi/ - https://securitylab.disi.unitn.it/ ___ mailmate mailing list mailmate@lists.freron.com http://lists.freron.com/listinfo/mailmate
Re: [MlMt] Address scheme
Funnily, to stop the problem here I didn't need to do that. Go figure. :-) Curtis Sent from my iPhone. > On Apr 21, 2015, at 5:21 AM, Thomas Grundberg wrote: > > Is it possible to get rid of this helpfulness? > > Yes. Look for MmAddressCompletionMailbox here. You would then need to point > it at an empty mailbox (I cannot recall if providing a non-existing mailbox > works). ___ mailmate mailing list mailmate@lists.freron.com http://lists.freron.com/listinfo/mailmate
[MlMt] AppleScript to get message:// url for currently selected message
I used the following AppleScript (triggered by TextExpander) to quickly insert a message:// URL for the currently selected message in Mail.app. tell application "Mail" set selectedMessages to selection set theMessage to item 1 of selectedMessages set messageid to message id of theMessage -- Make URL (must use URL-encoded values for "<" and ">") set urlText to "message://" & "%3c" & messageid & "%3e" return urlText end tell I’d like to do the same thing thing in MailMate. This is super convenient when I want to refer to the message I have selected in a different application. Does anyone know how to write an AppleScript to do this with MailMate? Thanks, Max___ mailmate mailing list mailmate@lists.freron.com http://lists.freron.com/listinfo/mailmate
[MlMt] gpg2 path?
Greetings, I've moved off of GPGTools, and am running the current gpg2 tooling from GNU (brew package, if anyone is interested). However, it seems as if the GPGTools path is stuck somewhere in the system for the path for gpg2. Any hidden variable where I can change that path? Christopher -- 李柯睿 Avt tace, avt loqvere meliora silentio Check my PGP key here: http://www.asgaard.org/cdl/cdl.asc Current vCard here: http://www.asgaard.org/cdl/cdl.vcf ___ mailmate mailing list mailmate@lists.freron.com http://lists.freron.com/listinfo/mailmate
Re: [MlMt] gpg2 path?
On 21 Apr 2015, at 13:28, Christopher LILJENSTOLPE wrote: Greetings, I've moved off of GPGTools, and am running the current gpg2 tooling from GNU (brew package, if anyone is interested). However, it seems as if the GPGTools path is stuck somewhere in the system for the path for gpg2. Any hidden variable where I can change that path? [CAVEATS: I am not Benny. Everything below is conjecture based on a few minutes of investigation. My advice is worth every penny you've paid for it :)] The Release Notes say that the path to gpg2 was originally hardcoded to /usr/local/bin/gpg2 and later the "default" was changed to /usr/local/MacGPG2/bin/gpg2 but there's nothing I can find anywhere documenting a way to change or override that default. However, a bit of grep work indicates that the places in /Application/MailMate.app/ where the strings MacGPG2 and gpg2 occur (in the main binary and the OakMIME framework library) are near the string MM_GPG, which appears to be used as a variable name based on its context, probably imported from the environment (quirky!) This suggests 3 possible approaches, if your homebrew binary is at /usr/local/bin/gpg2: 1. Symlink the hardcoded name to the working one: sudo mkdir -p /usr/local/MacGPG2/bin sudo ln -s /usr/local/bin/gpg2 /usr/local/MacGPG2/bin 2. Set the MM_GPG environment variable via launchctl. There are 2 ways to do this: a. Manually as needed, once per login session in a Terminal session: /bin/launchctl setenv MM_GPG /usr/local/bin/gpg2 b. In a launchd .plist (in ~/Library/LaunchAgents/) which runs the command above every time you log in. The details for constructing a launchd .plist file are readily available via 'man launchd.plist'. 3. Set the MM_GPG variable for MailMate with defaults: sudo defaults write com.freron.MailMate MM_GPG -string "/usr/local/bin/gpg2" Given the context around 'MM_GPG' in the 2 files it occurs in, my guess is that (2) will work but (3) will not. It is unlikely for them both to work. (1) will almost surely work, but it is inelegant. ___ mailmate mailing list mailmate@lists.freron.com http://lists.freron.com/listinfo/mailmate
Re: [MlMt] gpg2 path?
Greetings Bill, I had also already come up with 1, but I agree with you, !elegant. I will try and set the environment variable, and see what happens. Christopher On 21 Apr 2015, at 13:58, Bill Cole wrote: On 21 Apr 2015, at 13:28, Christopher LILJENSTOLPE wrote: Greetings, I've moved off of GPGTools, and am running the current gpg2 tooling from GNU (brew package, if anyone is interested). However, it seems as if the GPGTools path is stuck somewhere in the system for the path for gpg2. Any hidden variable where I can change that path? [CAVEATS: I am not Benny. Everything below is conjecture based on a few minutes of investigation. My advice is worth every penny you've paid for it :)] The Release Notes say that the path to gpg2 was originally hardcoded to /usr/local/bin/gpg2 and later the "default" was changed to /usr/local/MacGPG2/bin/gpg2 but there's nothing I can find anywhere documenting a way to change or override that default. However, a bit of grep work indicates that the places in /Application/MailMate.app/ where the strings MacGPG2 and gpg2 occur (in the main binary and the OakMIME framework library) are near the string MM_GPG, which appears to be used as a variable name based on its context, probably imported from the environment (quirky!) This suggests 3 possible approaches, if your homebrew binary is at /usr/local/bin/gpg2: 1. Symlink the hardcoded name to the working one: sudo mkdir -p /usr/local/MacGPG2/bin sudo ln -s /usr/local/bin/gpg2 /usr/local/MacGPG2/bin 2. Set the MM_GPG environment variable via launchctl. There are 2 ways to do this: a. Manually as needed, once per login session in a Terminal session: /bin/launchctl setenv MM_GPG /usr/local/bin/gpg2 b. In a launchd .plist (in ~/Library/LaunchAgents/) which runs the command above every time you log in. The details for constructing a launchd .plist file are readily available via 'man launchd.plist'. 3. Set the MM_GPG variable for MailMate with defaults: sudo defaults write com.freron.MailMate MM_GPG -string "/usr/local/bin/gpg2" Given the context around 'MM_GPG' in the 2 files it occurs in, my guess is that (2) will work but (3) will not. It is unlikely for them both to work. (1) will almost surely work, but it is inelegant. ___ mailmate mailing list mailmate@lists.freron.com http://lists.freron.com/listinfo/mailmate -- 李柯睿 Avt tace, avt loqvere meliora silentio Check my PGP key here: http://www.asgaard.org/cdl/cdl.asc Current vCard here: http://www.asgaard.org/cdl/cdl.vcf ___ mailmate mailing list mailmate@lists.freron.com http://lists.freron.com/listinfo/mailmate
[MlMt] Display Reply-To Address in the Message Viewer?
Is it possible to add the reply-to address to the info displayed in the top of the message viewer? I'd prefer this in addition to the from address, as opposed to inserting the contents of the reply-to header into what's displayed as who the message is from. ビリー ヨーデルマん +1 310 839 7673 http://MIX.ORG/ ___ mailmate mailing list mailmate@lists.freron.com http://lists.freron.com/listinfo/mailmate
[MlMt] Always have to delete twice before messages are deleted. Suggestions?
Hi there. I’ve just switched from Thunderbird to MailMate and I am loving it so far. Everything is awesome except for one weird oddity - 95% of the time when I select a single or multiple emails and delete it will not work the first time. The emails are un-highlighted and it looks just as it did before I tried to delete. I then have to reselect the same emails and hit delete again in order for the emails to change to red and then be deleted. I’m not seeing any obvious reason why. This is using both standard & gmail keybindings and the right-mouse button delete option. Any quick suggestions on things I can look at to resolve this? Quick info: 4 x separate IMAP accounts - 3 of which are gmail / google apps accounts and the last which is my own private IMAP server locally in my office. This appears to affect them all equally. Thank you! Phill ___ mailmate mailing list mailmate@lists.freron.com http://lists.freron.com/listinfo/mailmate
Re: [MlMt] Always have to delete twice before messages are deleted. Suggestions?
Noob mistake. I was reading email using the IMAP servers listed under “Sources”. So when I selected and deleted the first time it would mark emails as deleted but still show them. The second time it would expunge them. Now that I’ve hidden Sources and I’m using the Inbox mailboxes at the top it’s all working fine. Deleted messages disappear instantly. Haven’t figured out how to handle IMAP subfolders on the server (so they appear in the top mailboxes list) but I’ll get there. Thanks! On 22 Apr 2015, at 12:26, Phill Coxon wrote: Hi there. I’ve just switched from Thunderbird to MailMate and I am loving it so far. Everything is awesome except for one weird oddity - 95% of the time when I select a single or multiple emails and delete it will not work the first time. The emails are un-highlighted and it looks just as it did before I tried to delete. I then have to reselect the same emails and hit delete again in order for the emails to change to red and then be deleted. I’m not seeing any obvious reason why. This is using both standard & gmail keybindings and the right-mouse button delete option. Any quick suggestions on things I can look at to resolve this? Quick info: 4 x separate IMAP accounts - 3 of which are gmail / google apps accounts and the last which is my own private IMAP server locally in my office. This appears to affect them all equally. Thank you! Phill ___ mailmate mailing list mailmate@lists.freron.com http://lists.freron.com/listinfo/mailmate
Re: [MlMt] gpg2 path?
Following on from Bill's suggestions, a 4th option would be to run the following command in Terminal: sudo printf '%s\n' 'setenv MM_GPG /usr/local/bin/gpg2' >> /etc/launchd.conf and then log out and back in. This would also set the variable persistently. John On 2015-04-21, at 22:58 +0200, Bill Cole wrote: On 21 Apr 2015, at 13:28, Christopher LILJENSTOLPE wrote: Greetings, I've moved off of GPGTools, and am running the current gpg2 tooling from GNU (brew package, if anyone is interested). However, it seems as if the GPGTools path is stuck somewhere in the system for the path for gpg2. Any hidden variable where I can change that path? [CAVEATS: I am not Benny. Everything below is conjecture based on a few minutes of investigation. My advice is worth every penny you've paid for it :)] The Release Notes say that the path to gpg2 was originally hardcoded to /usr/local/bin/gpg2 and later the "default" was changed to /usr/local/MacGPG2/bin/gpg2 but there's nothing I can find anywhere documenting a way to change or override that default. However, a bit of grep work indicates that the places in /Application/MailMate.app/ where the strings MacGPG2 and gpg2 occur (in the main binary and the OakMIME framework library) are near the string MM_GPG, which appears to be used as a variable name based on its context, probably imported from the environment (quirky!) This suggests 3 possible approaches, if your homebrew binary is at /usr/local/bin/gpg2: 1. Symlink the hardcoded name to the working one: sudo mkdir -p /usr/local/MacGPG2/bin sudo ln -s /usr/local/bin/gpg2 /usr/local/MacGPG2/bin 2. Set the MM_GPG environment variable via launchctl. There are 2 ways to do this: a. Manually as needed, once per login session in a Terminal session: /bin/launchctl setenv MM_GPG /usr/local/bin/gpg2 b. In a launchd .plist (in ~/Library/LaunchAgents/) which runs the command above every time you log in. The details for constructing a launchd .plist file are readily available via 'man launchd.plist'. 3. Set the MM_GPG variable for MailMate with defaults: sudo defaults write com.freron.MailMate MM_GPG -string "/usr/local/bin/gpg2" Given the context around 'MM_GPG' in the 2 files it occurs in, my guess is that (2) will work but (3) will not. It is unlikely for them both to work. (1) will almost surely work, but it is inelegant. ___ mailmate mailing list mailmate@lists.freron.com http://lists.freron.com/listinfo/mailmate ___ mailmate mailing list mailmate@lists.freron.com http://lists.freron.com/listinfo/mailmate