# Emails are not threaded in Outlook 2013

**URL:** https://meta.discourse.org/t/emails-are-not-threaded-in-outlook-2013/16501
**Category:** Bug
**Created:** [June 13, 2014, 4:36am UTC](https://meta.discourse.org/t/emails-are-not-threaded-in-outlook-2013/16501 "2014-06-13T04:36:40Z")
**Posts on this page:** 1
**Showing post:** 9

<div class="post-metadata">

### Author: ![peternlewis](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/peternlewis/32/108888_2.png) [@peternlewis](https://meta.discourse.org/u/peternlewis)
#### Post date: [June 15, 2014, 3:41am UTC](https://meta.discourse.org/t/emails-are-not-threaded-in-outlook-2013/16501/9 "2014-06-15T03:41:09Z")

</div>

> [@eviltrout](#):
>
> Great stuff. I’d really like to fix this once we figure out exactly what we need to change

Apparently In-Reply-To is another possibly important header. [http://www.ietf.org/rfc/rfc2822.txt](http://www.ietf.org/rfc/rfc2822.txt) documents in detail what the References and In-Reply-To headers are meant to be, but basically as near as I can figure it:

In-Reply-To: lists the message ids of all the messages this reply is replying to (so whatever message was selected for the “Reply” button, plus any message quoted. Just the former would probably be sufficient.

References: lists the parent’s References header followed by the parent’s message ID.

If you look at ours currently, it looks like this:

```
Message-ID: <539a986f8300_5a3fae28acd8c8201e9@forum.mail>
In-Reply-To: <topic/96@forum.keyboardmaestro.com>
References: <topic/96@forum.keyboardmaestro.com>

```

and

```
Message-ID: <539a9904d40bd_5a3fae28d5b8242036d@forum.mail>
In-Reply-To: <topic/96@forum.keyboardmaestro.com>
References: <topic/96@forum.keyboardmaestro.com>

```

which is clearly wrong. The first one was the original PM, so should not have an In-Reply-To or References header, and the second one (the reply, should look like this:

```
Message-ID: <539a9904d40bd_5a3fae28d5b8242036d@forum.mail>
In-Reply-To: <539a9904d40bd_5a3fae28d5b8242036d@forum.mail>
References: <539a986f8300_5a3fae28acd8c8201e9@forum.mail>

```

And a reply to that reply should look like this:

```
Message-ID: <adsassadfdfsdfs_sddfsdfsaererfgdsf@forum.mail>
In-Reply-To: <539a986f8300_5a3fae28acd8c8201e9@forum.mail>
References: <539a986f8300_5a3fae28acd8c8201e9@forum.mail> <539a9904d40bd_5a3fae28d5b8242036d@forum.mail>

```

Does that help?

---

_[View the full topic](https://meta.discourse.org/t/emails-are-not-threaded-in-outlook-2013/16501)._
