Difference between pages "Evolution" and "Mutt Header Format"
From Forensics Wiki
(Difference between pages)
(New page: <pre> Subject: header test From: Username <username@sendinghost.com> To: Username <username@receivinghost.com> Content-Type: text/plain Date: Sat, 28 Jul 2007 11:52:35 +0200 Message-Id: <1...) |
(Replaced source code with English text version) |
||
| Line 1: | Line 1: | ||
<pre> | <pre> | ||
| + | Date: Sat, 28 Jul 2007 18:29:15 +0200 | ||
| + | To: Username <username@receivinghost.com> | ||
Subject: header test | Subject: header test | ||
| + | Message-ID: <20070728162915.GA2046@localhost> | ||
| + | MIME-Version: 1.0 | ||
| + | Content-Type: text/plain; charset=us-ascii | ||
| + | Content-Disposition: inline | ||
| + | User-Agent: Mutt/1.5.13 (2006-08-11) | ||
From: Username <username@sendinghost.com> | From: Username <username@sendinghost.com> | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
</pre> | </pre> | ||
| + | |||
| + | The format of the Message id field is: | ||
| + | |||
| + | # Four digits for the current year | ||
| + | # Two digits for the current month | ||
| + | # Two digits for the current day of the month | ||
| + | # Two digits for the current hour | ||
| + | # Two digits for the current minute | ||
| + | # Two digits for the current second | ||
| + | # A period followed by the capital letter 'G' | ||
| + | # A capital letter. The first message sent will have the letter 'A', the next 'B', and then 'C' until the 26th message will have 'Z'. The 27th message sent starts again with 'A'. | ||
| + | # The current process id number | ||
| + | # The '@' symbol | ||
| + | # The fully qualified domain name of the sending computer. | ||
| + | |||
| + | The above was based on the function <tt>mutt_gen_msgid</tt> in <tt>mutt/sendlib.c</tt>. | ||
Latest revision as of 08:51, 8 August 2007
Date: Sat, 28 Jul 2007 18:29:15 +0200 To: Username <username@receivinghost.com> Subject: header test Message-ID: <20070728162915.GA2046@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) From: Username <username@sendinghost.com>
The format of the Message id field is:
- Four digits for the current year
- Two digits for the current month
- Two digits for the current day of the month
- Two digits for the current hour
- Two digits for the current minute
- Two digits for the current second
- A period followed by the capital letter 'G'
- A capital letter. The first message sent will have the letter 'A', the next 'B', and then 'C' until the 26th message will have 'Z'. The 27th message sent starts again with 'A'.
- The current process id number
- The '@' symbol
- The fully qualified domain name of the sending computer.
The above was based on the function mutt_gen_msgid in mutt/sendlib.c.