<div class="markdown">
<p dir="auto">On 12 Jun 2014, at 18:36, Zak McClellan wrote:</p>

<blockquote>
<p dir="auto">One (experimental) feature I have been struggling to use is email read receipts.  I have edited the Submissions.plist for each and all of my email IMAP accounts (Yahoo, Gmail, Fastmail, and Hover) without success.</p>

<p dir="auto">Release Notes - Experimental support for requesting DSNs<br>
<a href="http://updates.mailmate-app.com/release_notes">http://updates.mailmate-app.com/release_notes</a></p>

<p dir="auto">Any ideas?</p>
</blockquote>

<p dir="auto">It requires that it's supported by all the SMTP servers between sender and recipient. It works for me with my own server (it uses Postfix), but it appears to not work for both Yahoo and Gmail. </p>

<p dir="auto">You can see if a given server supports DSN by connecting manually and look for DSN in its response (possibly after an EHLO command):</p>

<pre><code>> telnet smtp.gmail.com 25
Trying 173.194.71.108...
Connected to gmail-smtp-msa.l.google.com (173.194.71.108).
Escape character is '^]'.
220 mx.google.com ESMTP k16sm28795400lbo.37 - gsmtp
EHLO dummy
250-mx.google.com at your service, [80.71.128.147]
250-SIZE 35882577
250-8BITMIME
250-STARTTLS
250-ENHANCEDSTATUSCODES
250 CHUNKING
</code></pre>

<p dir="auto">No DSN in the list which means no support for delivery status notifications.</p>

<p dir="auto">Do you think this explains your problems?</p>

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

</div>