Precedence: header in email - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T11:51:42Zhttp://stackoverflow.com/feeds/question/154718http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/154718/precedence-header-in-email2Precedence: header in emailJacob2008-09-30T20:01:11Z2008-11-19T14:03:41Z
<p>My web application sends email fairly often, and it sends 3 kinds of emails: initiated by user, in response to an event in the system, and in automatic response to an email received by the application.</p>
<p>I would like to make sure that the third type of email does not get stuck in an endless loop of auto-responders talking to each other. Currently, I use the header:</p>
<pre><code>Precedence: junk
</code></pre>
<p>but Yahoo! mail is treating these messages as spam. This is obviously not ideal, because we would like SOMEBODY to read our auto-response and make a decision on it, just not an out-of-office reply.</p>
<p><strong>What is the best way to send an email without triggering either junk filters or auto-responders?</strong></p>
<pre><code>Precedence: junk?
Precedence: bulk?
Precedence: list?
X-Priority: 2?
</code></pre>
http://stackoverflow.com/questions/154718/precedence-header-in-email/154747#154747-2Answer by gms8994 for Precedence: header in emailgms89942008-09-30T20:06:16Z2008-09-30T20:06:16Z<p>Spam filters usually look at the entire message, to determine spaminess. Good luck getting past that one.</p>
<p>As far as out-of-office replies, I think the only way to not trigger them (Outlook specific, and I may be wrong), is to not send the message directly to the Out-of-Office person. Obviously, you may not know that at the time, so that may not be a solution.</p>
http://stackoverflow.com/questions/154718/precedence-header-in-email/154750#154750-1Answer by Robert for Precedence: header in emailRobert2008-09-30T20:06:58Z2008-09-30T20:06:58Z<p>How about configuring a white list on your email account?</p>
<p>I would assume that any email key words could get flagged by a junk filter.</p>
http://stackoverflow.com/questions/154718/precedence-header-in-email/154769#1547691Answer by jj33 for Precedence: header in emailjj332008-09-30T20:08:58Z2008-09-30T20:08:58Z<p>The traditional way of dealing with this is to send the email with a null envelope-sender (traditionally written as <>). This prevents the autoresponder on the other end from responding because there's no sender to respond to.</p>
http://stackoverflow.com/questions/154718/precedence-header-in-email/154794#1547944Answer by Owen for Precedence: header in emailOwen2008-09-30T20:12:07Z2008-10-08T04:11:33Z<p><a href="http://www.faqs.org/rfcs/rfc2076.html" rel="nofollow">RFC 2076</a> discourages the use of the precedence header. as you have noted, many clients will just filter that off (especially the precedence: junk variety). it may be better to use a null path to avoid auto responder wars:</p>
<pre><code>Return-Path: <>
</code></pre>
<p>Ultimately you could use priority to try to get around this, but this seems like going against the spirit of the header. i'd suggest just using the return-path header for this, and avoiding precedence. in some cases you may have to write in some way to drop auto-responders in your application (to avoid getting into a responder war), but i can't remember a situation in which this happened using an appropriate return-path. (most auto responder wars i recall having to deal with were the result of very badly formed emails)</p>
<p>Note: the <code>Return-Path</code> header is, in short, the destination for notifications (bounces, delay delivery, etc...), and is described in <a href="http://www.faqs.org/rfcs/rfc2821.html" rel="nofollow">RFC 2821</a> -- because it's required by SMTP. It's also one method to drop bad mail (as theoretically all good mail will set an appropriate return-path).</p>
http://stackoverflow.com/questions/154718/precedence-header-in-email/301958#3019584Answer by galtsev for Precedence: header in emailgaltsev2008-11-19T14:03:41Z2008-11-19T14:03:41Z<p>There is a RFC 3834 dedicated for automated email responses.</p>
<p>In short, it recommend:</p>
<ol>
<li><p>Send auto-responses only to address contained in Return-Path header of incoming message, if it is valid email address. Particularly "<>" (null address) in Return-Path of the message mean, that auto-responses must not be send for this message.</p></li>
<li><p>When sending auto-response, MAIL FROM smtp command must contain "<>" (null address). This would lead to Return-Path:<> when message will be delivered.</p></li>
<li><p>Use Auto-Submit header with value other then "no" to explicitly indicate automated response.</p></li>
</ol>
<p>One note: it is not worth to explicitly set Return-Path header in outgoing message, as this header must be rewritten by envelop address (from MAIL FROM smtp command) during delivery.</p>