Precedence: header in email - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T11:51:42Z http://stackoverflow.com/feeds/question/154718 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/154718/precedence-header-in-email 2 Precedence: header in email Jacob 2008-09-30T20:01:11Z 2008-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 -2 Answer by gms8994 for Precedence: header in email gms8994 2008-09-30T20:06:16Z 2008-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 -1 Answer by Robert for Precedence: header in email Robert 2008-09-30T20:06:58Z 2008-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#154769 1 Answer by jj33 for Precedence: header in email jj33 2008-09-30T20:08:58Z 2008-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 &lt;>). 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#154794 4 Answer by Owen for Precedence: header in email Owen 2008-09-30T20:12:07Z 2008-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: &lt;&gt; </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#301958 4 Answer by galtsev for Precedence: header in email galtsev 2008-11-19T14:03:41Z 2008-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 "&lt;>" (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 "&lt;>" (null address). This would lead to Return-Path:&lt;> 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>