1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285
|
<pre>Network Working Group T. Hansen
Request for Comments: 3887 AT&T Laboratories
Category: Standards Track September 2004
<span class="h1">Message Tracking Query Protocol</span>
Status of this Memo
This document specifies an Internet standards track protocol for the
Internet community, and requests discussion and suggestions for
improvements. Please refer to the current edition of the "Internet
Official Protocol Standards" (STD 1) for the standardization state
and status of this protocol. Distribution of this memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (2004).
Abstract
Customers buying enterprise message systems often ask: Can I track
the messages? Message tracking is the ability to find out the path
that a particular message has taken through a messaging system and
the current routing status of that message. This document describes
the Message Tracking Query Protocol that is used in conjunction with
extensions to the ESMTP protocol to provide a complete message
tracking solution for the Internet.
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
The Message Tracking Models and Requirements document
[<a href="#ref-RFC-MTRK-MODEL" title=""Message Tracking Models and Requirements"">RFC-MTRK-MODEL</a>] discusses the models that message tracking solutions
could follow, along with requirements for a message tracking solution
that can be used with the Internet-wide message infrastructure. This
memo and its companions, [<a href="#ref-RFC-MTRK-ESMTP" title=""SMTP Service Extension for Message Tracking"">RFC-MTRK-ESMTP</a>] and [<a href="#ref-RFC-MTRK-TSN" title=""The Message/Tracking-Status MIME Extension"">RFC-MTRK-TSN</a>],
describe a complete message tracking solution that satisfies those
requirements. The memo [<a href="#ref-RFC-MTRK-ESMTP" title=""SMTP Service Extension for Message Tracking"">RFC-MTRK-ESMTP</a>] defines an extension to the
SMTP service that provides the information necessary to track
messages. This memo defines a protocol that can be used to query the
status of messages that have been transmitted on the Internet via
SMTP. The memo [<a href="#ref-RFC-MTRK-TSN" title=""The Message/Tracking-Status MIME Extension"">RFC-MTRK-TSN</a>] describes the message/tracking-status
[<a href="#ref-RFC-MIME" title=""Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies"">RFC-MIME</a>] media type that is used to report tracking status
information. Using the model document's terminology, this solution
uses active enabling and active requests with both request and
chaining referrals.
<span class="grey">Hansen Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Terminology</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>
[<a href="#ref-RFC-KEYWORDS" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC-KEYWORDS</a>].
All syntax descriptions use the ABNF specified by [<a href="#ref-RFC-ABNF" title=""Augmented BNF for Syntax Specifications: ABNF"">RFC-ABNF</a>].
Terminal nodes not defined elsewhere in this document are defined in
[<a href="#ref-RFC-ABNF" title=""Augmented BNF for Syntax Specifications: ABNF"">RFC-ABNF</a>], [<a href="#ref-RFC-URI" title=""Uniform Resource Identifiers (URI): Generic Syntax"">RFC-URI</a>], [<a href="#ref-RFC-MTRK-ESMTP" title=""SMTP Service Extension for Message Tracking"">RFC-MTRK-ESMTP</a>], [<a href="#ref-RFC-SMTP" title=""Simple Mail Transfer Protocol"">RFC-SMTP</a>], or
[<a href="#ref-RFC-SMTPEXT" title=""SMTP Service Extension for Authentication"">RFC-SMTPEXT</a>].
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Basic Operation</span>
The Message Tracking Query Protocol (MTQP) is similar to many other
line-oriented Internet protocols, such as [<a href="#ref-POP3" title=""Post Office Protocol - Version 3"">POP3</a>] and [<a href="#ref-NNTP" title=""Network News Transfer Protocol"">NNTP</a>].
Initially, the server host starts the MTQP service by listening on
TCP port 1038.
When an MTQP client wishes to make use of the message tracking
service, it establishes a TCP connection with the server host, as
recorded from the initial message submission or as returned by a
previous tracking request. To find the server host, the MTQP client
first does an SRV lookup for the server host using DNS SRV records,
with a service name of "mtqp" and a protocol name of "tcp", as in
_mtqp._tcp.smtp3.example.com. (See the "Usage rules" section in
[<a href="#ref-RFC-SRV" title=""A DNS RR for specifying the location of services (DNS SRV)"">RFC-SRV</a>] for details.) If the SRV records do not exist, the MTQP
client then does an address record lookup for the server host. When
the connection is established, the MTQP server sends a greeting. The
MTQP client and MTQP server then exchange commands and responses
(respectively) until the connection is closed or aborted.
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Tracking Service DNS Considerations</span>
Because of the ways server host lookups are performed, many different
tracking server host configurations are supported.
A mail system that uses a single mail server host and has the MTQP
server host on the same server host will most likely have a single MX
record pointing at the server host, and if not, will have an address
record. Both mail and MTQP clients will access that host directly.
A mail system that uses a single mail server host, but wants tracking
queries to be performed on a different machine, MUST have an SRV MTQP
record pointing at that different machine.
<span class="grey">Hansen Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
A mail system that uses multihomed mail servers has two choices for
providing tracking services: either all mail servers must be running
tracking servers that are able to retrieve information on all
messages, or the tracking service must be performed on one (or more)
machine(s) that are able to retrieve information on all messages. In
the former case, no additional DNS records are needed beyond the MX
records already in place for the mail system. In the latter case,
SRV MTQP records are needed that point at the machine(s) that are
running the tracking service. In both cases, note that the tracking
service MUST be able to handle the queries for all messages accepted
by that mail system.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Commands</span>
Commands in MTQP consist of a case-insensitive keyword, possibly
followed by one or more parameters. All commands are terminated by a
CRLF pair. Keywords and parameters consist of printable ASCII
characters. Keywords and parameters are separated by whitespace (one
or more space or tab characters). A command line is limited to 998
characters before the CRLF.
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a>. Responses</span>
Responses in MTQP consist of a status indicator that indicates
success or failure. Successful commands may also be followed by
additional lines of data. All response lines are terminated by a
CRLF pair and are limited to 998 characters before the CRLF. There
are several status indicators: "+OK" indicates success; "+OK+"
indicates a success followed by additional lines of data, a multi-
line success response; "-TEMP" indicates a temporary failure; "-ERR"
indicates a permanent failure; and "-BAD" indicates a protocol error
(such as for unrecognized commands).
A status indicator MAY be followed by a series of machine-parsable,
case-insensitive response information giving more data about the
errors. These are separated from the status indicator and each other
by a single slash character ("/", decimal code 47). Following that,
there MAY be white space and a human-readable text message. The
human-readable text message is not intended to be presented to the
end user, but should be appropriate for putting in a log for use in
debugging problems.
In a multi-line success response, each subsequent line is terminated
by a CRLF pair and limited to 998 characters before the CRLF. When
all lines of the response have been sent, a final line is sent
consisting of a single period (".", decimal code 046) and a CRLF
pair. If any line of the multi-line response begins with a period,
the line is "dot-stuffed" by prepending the period with a second
<span class="grey">Hansen Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
period. When examining a multi-line response, the client checks to
see if the line begins with a period. If so, and octets other than
CRLF follow, the first octet of the line (the period) is stripped
away. If so, and if CRLF immediately follows the period, then the
response from the MTQP server is ended and the line containing the
".CRLF" is not considered part of the multi-line response.
An MTQP server MUST respond to an unrecognized, unimplemented, or
syntactically invalid command by responding with a negative -BAD
status indicator. A server MUST respond to a command issued when the
session is in an incorrect state by responding with a negative -ERR
status indicator.
<span class="h3"><a class="selflink" id="section-2.4" href="#section-2.4">2.4</a>. Firewall Considerations</span>
A firewall mail gateway has two choices when receiving a tracking
query for a host within its domain: it may return a response to the
query that says the message has been passed on, but no further
information is available; or it may perform a chaining operation
itself, gathering information on the message from the mail hosts
behind the firewall, and returning to the MTQP client the information
for each behind-the-firewall hop, or possibly just the final hop
information, possibly also disguising the names of any hosts behind
the firewall. Which option is picked is an administrative decision
and is not further mandated by this document.
If a server chooses to perform a chaining operation itself, it MUST
provide a response within 2 minutes, and SHOULD return a "no further
information is available" response if it cannot provide an answer at
the end of that time limit.
<span class="h3"><a class="selflink" id="section-2.5" href="#section-2.5">2.5</a>. Optional Timers</span>
An MTQP server MAY have an inactivity autologout timer. Such a timer
MUST be of at least 10 minutes in duration. The receipt of any
command from the client during that interval should suffice to reset
the autologout timer. An MTQP server MAY limit the number of
commands, unrecognized commands, or total connection time, or MAY use
other criteria, to prevent denial of service attacks.
An MTQP client MAY have an inactivity autologout timer while waiting
for a response from the server. Since an MTQP server may be a
firewall, and may be chaining information from other servers, such a
timer MUST be at least 2 minutes in duration.
<span class="grey">Hansen Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Initialization and Option Response</span>
Once the TCP connection has been opened by an MTQP client, the MTQP
server issues an initial status response that indicates its
readiness. If the status response is positive (+OK or +OK+), the
client may proceed with other commands.
The initial status response MUST include the response information
"/MTQP". Negative responses MUST include a reason code as response
information. The following reason codes are defined here;
unrecognized reason codes added in the future may be treated as
equivalent to "unavailable".
"/" "unavailable"
"/" "admin"
The reason code "/admin" SHOULD be used when the service is
unavailable for administrative reasons. The reason code
"/unavailable" SHOULD be used when the service is unavailable for
other reasons.
If the server has any options enabled, they are listed as the multi-
line response of the initial status response, one per line. An
option specification consists of an identifier, optionally followed
by option-specific parameters. An option specification may be
continued onto additional lines by starting the continuation lines
with white space. The option identifier is case insensitive. Option
identifiers beginning with the characters "vnd." are reserved for
vendor use. (See below.)
One option specification is defined here:
STARTTLS [1*WSP "required"]
This capability MUST be listed if the optional STARTTLS command is
enabled on the MQTP server and one or more certificates have been
properly installed.
It has one optional parameter: the word "required" (The parameters
for STARTTLS are case-insensitive). If the server requires that TLS
be used for some of the domains the server handles, the server MUST
specify the "required" parameter.
<span class="grey">Hansen Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Examples</span>
Example #1 (no options):
S: +OK/MTQP MTQP server ready
Example #2 (service temporarily unavailable):
S: -TEMP/MTQP/admin Service down for admin, call back later
Example #3 (service permanently unavailable):
S: -ERR/MTQP/unavailable Service down
Example #4 (alternative for no options):
S: +OK+/MTQP MTQP server ready
S: .
Example #5 (options available):
S: +OK+/MTQP MTQP server ready
S: starttls
S: vnd.com.example.option2 with parameters private to example.com
S: vnd.com.example.option3 with a very long
S: list of parameters
S: .
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. TRACK Command</span>
Syntax:
track-command = "TRACK" 1*WSP unique-envid 1*WSP mtrk-secret CRLF
mtrk-secret = base64
Unique-envid is defined in [<a href="#ref-RFC-MTRK-ESMTP" title=""SMTP Service Extension for Message Tracking"">RFC-MTRK-ESMTP</a>]. Mtrk-secret is the
secret A described in [<a href="#ref-RFC-MTRK-ESMTP" title=""SMTP Service Extension for Message Tracking"">RFC-MTRK-ESMTP</a>], encoded using base64.
When the client issues the TRACK command, and the user is validated,
the MTQP server retrieves tracking information about an email
message. To validate the user, the value of mtrk-secret is hashed
using SHA1, as described in [<a href="#ref-RFC-SHA1" title=""US Secure Hash Algorithm 1 (SHA1)"">RFC-SHA1</a>]. The hash value is then
compared with the value passed with the message when it was
originally sent. If the hash values match, the user is validated.
A successful response MUST be multi-line, consisting of a [<a href="#ref-RFC-MIME" title=""Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies"">RFC-MIME</a>]
body part. The MIME body part MUST be of type multipart/related,
with subparts of message/tracking-status, as defined in
[<a href="#ref-RFC-MTRK-TSN" title=""The Message/Tracking-Status MIME Extension"">RFC-MTRK-TSN</a>]. The response contains the tracking information about
the email message that used the given tracking-id. A negative
response to the TRACK command may include these reason codes:
<span class="grey">Hansen Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
"/" "tls-required"
"/" "admin"
"/" "unavailable"
"/" "noinfo"
"/" "insecure"
The reason code "/tls-required" SHOULD be used when the server has
decided to require TLS. The reason code "/admin" SHOULD be used when
the server has become unavailable, due to administrative reasons,
since the connection was initialized. The reason code "/unavailable"
SHOULD be used when the server has become unavailable, for other
reasons, since the connection was initialized. The reason code
"/insecure" is described later.
If a message has not been seen by the MTQP server, the server MUST
choose between two choices: it MAY return a positive response with an
action field of "opaque" in the tracking information, or it MAY
return a negative response with a reason code of "noinfo".
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Examples</span>
In each of the examples below, the unique-envid is
"<12345-20010101@example.com>", the secret A is "abcdefgh", and the
SHA1 hash B is (in hex) "734ba8b31975d0dbae4d6e249f4e8da270796c94".
The message came from example.com and the MTQP server is
example2.com.
Example #6 Message Delivered:
C: TRACK <12345-20010101@example.com> YWJjZGVmZ2gK
S: +OK+ Tracking information follows
S: Content-Type: multipart/related; boundary=%%%%; type=tracking-status
S:
S: --%%%%
S: Content-Type: message/tracking-status
S:
S: Original-Envelope-Id: 12345-20010101@example.com
S: Reporting-MTA: dns; example2.com
S: Arrival-Date: Mon, 1 Jan 2001 15:15:15 -0500
S:
S: Original-Recipient: <a href="./rfc822">rfc822</a>; user1@example1.com
S: Final-Recipient: <a href="./rfc822">rfc822</a>; user1@example1.com
S: Action: delivered
S: Status: 2.5.0
S:
S: --%%%%--
S: .
<span class="grey">Hansen Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
Example #7 Message Transferred:
C: TRACK <12345-20010101@example.com> YWJjZGVmZ2gK
S: +OK+ Tracking information follows
S: Content-Type: multipart/related; boundary=%%%%; type=tracking-status
S:
S: --%%%%
S: Content-Type: message/tracking-status
S:
S: Original-Envelope-Id: 12345-20010101@example.com
S: Reporting-MTA: dns; example2.com
S: Arrival-Date: Mon, 1 Jan 2001 15:15:15 -0500
S:
S: Original-Recipient: <a href="./rfc822">rfc822</a>; user1@example1.com
S: Final-Recipient: <a href="./rfc822">rfc822</a>; user1@example1.com
S: Action: transferred
S: Remote-MTA: dns; example3.com
S: Last-Attempt-Date: Mon, 1 Jan 2001 19:15:03 -0500
S: Status:2.4.0
S:
S: --%%%%--
S: .
Example #8 Message Delayed and a Dot-Stuffed Header:
C: TRACK <12345-20010101@example.com> YWJjZGVmZ2gK
S: +OK+ Tracking information follows
S: Content-Type: multipart/related; boundary=%%%%; type=tracking-status
S: ..Dot-Stuffed-Header: as an example
S:
S: --%%%%
S: Content-Type: message/tracking-status
S:
S: Original-Envelope-Id: 12345-20010101@example.com
S: Reporting-MTA: dns; example2.com
S: Arrival-Date: Mon, 1 Jan 2001 15:15:15 -0500
S:
S: Original-Recipient: <a href="./rfc822">rfc822</a>; user1@example1.com
S: Final-Recipient: <a href="./rfc822">rfc822</a>; user1@example1.com
S: Action: delayed
S: Status: 4.4.1 (No answer from host)
S: Remote-MTA: dns; example3.com
S: Last-Attempt-Date: Mon, 1 Jan 2001 19:15:03 -0500
S: Will-Retry-Until: Thu, 4 Jan 2001 15:15:15 -0500
S:
S: --%%%%--
S: .
<span class="grey">Hansen Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
Example #9 Two Users, One Relayed, One Failed:
C: TRACK <12345-20010101@example.com> YWJjZGVmZ2gK
S: +OK+ Tracking information follows
S: Content-Type: multipart/related; boundary=%%%%; type=tracking-status
S:
S: --%%%%
S: Content-Type: message/tracking-status
S:
S: Original-Envelope-Id: 12345-20010101@example.com
S: Reporting-MTA: dns; example2.com
S: Arrival-Date: Mon, 1 Jan 2001 15:15:15 -0500
S:
S: Original-Recipient: <a href="./rfc822">rfc822</a>; user1@example1.com
S: Final-Recipient: <a href="./rfc822">rfc822</a>; user1@example1.com
S: Action: relayed
S: Status: 2.1.9
S: Remote-MTA: dns; example3.com
S: Last-Attempt-Date: Mon, 1 Jan 2001 19:15:03 -0500
S:
S: Original-Recipient: <a href="./rfc822">rfc822</a>; user2@example1.com
S: Final-Recipient: <a href="./rfc822">rfc822</a>; user2@example1.com
S: Action: failed
S: Status 5.2.2 (Mailbox full)
S: Remote-MTA: dns; example3.com
S: Last-Attempt-Date: Mon, 1 Jan 2001 19:15:03 -0500
S:
S: --%%%%--
S: .
Example #10 Firewall:
C: TRACK <12345-20010101@example.com> YWJjZGVmZ2gK
S: +OK+ Tracking information follows
S: Content-Type: multipart/related; boundary=%%%%; type=tracking-status
S:
S: --%%%%
S: Content-Type: message/tracking-status
S:
S: Original-Envelope-Id: 12345-20010101@example.com
S: Reporting-MTA: dns; example2.com
S: Arrival-Date: Mon, 1 Jan 2001 15:15:15 -0500
S:
S: Original-Recipient: <a href="./rfc822">rfc822</a>; user1@example1.com
S: Final-Recipient: <a href="./rfc822">rfc822</a>; user1@example1.com
S: Action: relayed
S: Status: 2.1.9
S: Remote-MTA: dns; smtp.example3.com
S: Last-Attempt-Date: Mon, 1 Jan 2001 19:15:03 -0500
S:
<span class="grey">Hansen Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
S: --%%%%
S: Content-Type: message/tracking-status
S:
S: Original-Envelope-Id: 12345-20010101@example.com
S: Reporting-MTA: dns; smtp.example3.com
S: Arrival-Date: Mon, 1 Jan 2001 15:15:15 -0500
S:
S: Original-Recipient: <a href="./rfc822">rfc822</a>; user2@example1.com
S: Final-Recipient: <a href="./rfc822">rfc822</a>; user4@example3.com
S: Action: delivered
S: Status: 2.5.0
S:
S: --%%%%--
S: .
Example #11 Firewall, Combining Per-Recipient Blocks:
C: TRACK <12345-20010101@example.com> YWJjZGVmZ2gK
S: +OK+ Tracking information follows
S: Content-Type: multipart/related; boundary=%%%%; type=tracking-status
S:
S: --%%%%
S: Content-Type: message/tracking-status
S:
S: Original-Envelope-Id: 12345-20010101@example.com
S: Reporting-MTA: dns; example2.com
S: Arrival-Date: Mon, 1 Jan 2001 15:15:15 -0500
S:
S: Original-Recipient: <a href="./rfc822">rfc822</a>; user1@example1.com
S: Final-Recipient: <a href="./rfc822">rfc822</a>; user1@example1.com
S: Action: relayed
S: Status: 2.1.9
S: Remote-MTA: dns; smtp.example3.com
S: Last-Attempt-Date: Mon, 1 Jan 2001 19:15:03 -0500
S:
S: Original-Recipient: <a href="./rfc822">rfc822</a>; user2@example1.com
S: Final-Recipient: <a href="./rfc822">rfc822</a>; user4@example3.com
S: Action: delivered
S: Status:2.5.0
S:
S: --%%%%--
S: .
<span class="grey">Hansen Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
Example #12 Firewall, Hiding System Names Behind the Firewall:
C: TRACK <12345-20010101@example.com> YWJjZGVmZ2gK
S: +OK+ Tracking information follows
S: Content-Type: multipart/related; boundary=%%%%; type=tracking-status
S:
S: --%%%%
S: Content-Type: message/tracking-status
S:
S: Original-Envelope-Id: 12345-20010101@example.com
S: Reporting-MTA: dns; example2.com
S: Arrival-Date: Mon, 1 Jan 2001 15:15:15 -0500
S:
S: Original-Recipient: <a href="./rfc822">rfc822</a>; user1@example1.com
S: Final-Recipient: <a href="./rfc822">rfc822</a>; user1@example1.com
S: Action: relayed
S: Status: 2.1.9
S: Remote-MTA: dns; example2.com
S: Last-Attempt-Date: Mon, 1 Jan 2001 19:15:03 -0500
S:
S: --%%%%
S: Content-Type: message/tracking-status
S:
S: Original-Envelope-Id: 12345-20010101@example.com
S: Reporting-MTA: dns; example2.com
S: Arrival-Date: Mon, 1 Jan 2001 15:15:15 -0500
S:
S: Original-Recipient: <a href="./rfc822">rfc822</a>; user2@example1.com
S: Final-Recipient: <a href="./rfc822">rfc822</a>; user4@example1.com
S: Action: delivered
S: Status: 2.5.0
S:
S: --%%%%--
S: .
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. COMMENT Command</span>
Syntax:
comment-command = "COMMENT" opt-text CRLF
opt-text = [WSP *(VCHAR / WSP)]
When the client issues the COMMENT command, the MTQP server MUST
respond with a successful response (+OK or +OK+). All optional text
provided with the COMMENT command are ignored.
<span class="grey">Hansen Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. STARTTLS Command</span>
Syntax:
starttls-command = "STARTTLS" 1*WSP domain *WSP CRLF
domain = (sub-domain 1*("." sub-domain))
TLS [<a href="#ref-TLS" title=""The TLS Protocol Version 1.0"">TLS</a>] is a popular mechanism for enhancing TCP communications
with confidentiality and authentication. All MTQP servers MUST
implement TLS. However, TLS MAY be disabled by a server
administrator, either explicitly or by failing to install any
certificates for TLS to use. If an MTQP server supports TLS and has
one or more certificates available it MUST include "STARTTLS" in the
option specifications list on protocol startup.
Note: TLS SHOULD be enabled on MQTP servers whenever possible.
The parameter MUST be a fully qualified domain name (FQDN). A client
MUST specify the hostname it believes it is speaking with so that the
server may respond with the proper TLS certificate. This is useful
for virtual servers that provide message tracking for multiple
domains (i.e., virtual hosting).
If the server returns a negative response, it MAY use one of the
following response codes:
"/" "unsupported"
"/" "unavailable"
"/" "tls-in-progress"
"/" "bad-fqdn"
If TLS is not supported, then a response code of "/unsupported"
SHOULD be used. If TLS is not available for some other reason, then
a response code of "/unavailable" SHOULD be used. If a TLS session
is already in progress, then it is a protocol error and "-BAD" MUST
be returned with a response code of "/tls-in-progress". If there is
a mismatch between the supplied FQDN and the FQDN found in the
dNSName field of the subjectAltName extension of the server's
certificate [<a href="#ref-RFC-X509" title=""Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile"">RFC-X509</a>], then it is a protocol error and "-BAD" MUST
be returned with a response code of "/bad-fqdn".
After receiving a positive response to a STARTTLS command, the client
MUST start the TLS negotiation before giving any other MTQP commands.
If the MTQP client is using pipelining (see below), the STARTTLS
command must be the last command in a group.
<span class="grey">Hansen Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. Processing After the STARTTLS Command</span>
If the TLS handshake fails, the server SHOULD abort the connection.
After the TLS handshake has been completed, both parties MUST
immediately decide whether or not to continue based on the
authentication and confidentiality achieved. The MTQP client and
server may decide to move ahead even if the TLS negotiation ended
with no authentication and/or no confidentiality because most MTQP
services are performed with no authentication and no confidentiality,
but some MTQP clients or servers may want to continue only if a
particular level of authentication and/or confidentiality was
achieved.
If the MTQP client decides that the level of authentication or
confidentiality is not high enough for it to continue, it SHOULD
issue an MTQP QUIT command immediately after the TLS negotiation is
complete.
If the MTQP server decides that the level of authentication or
confidentiality is not high enough for it to continue, it MAY abort
the connection. If it decides that the level of authentication or
confidentiality is not high enough for it to continue, and it does
not abort the connection, it SHOULD reply to every MTQP command from
the client (other than a QUIT command) with a negative "-ERR"
response and a response code of "/insecure".
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. Result of the STARTTLS Command</span>
Upon completion of the TLS handshake, the MTQP protocol is reset to
the initial state (the state in MTQP after a server starts up). The
server MUST discard any knowledge obtained from the client prior to
the TLS negotiation itself. The client MUST discard any knowledge
obtained from the server, such as the list of MTQP options, which was
not obtained from the TLS negotiation itself.
At the end of the TLS handshake, the server acts as if the connection
had been initiated and responds with an initial status response and,
optionally, a list of server options. The list of MTQP server
options received after the TLS handshake MUST be different than the
list returned before the TLS handshake. In particular, a server MUST
NOT return the STARTTLS option in the list of server options after a
TLS handshake has been completed.
Both the client and the server MUST know if there is a TLS session
active. A client MUST NOT attempt to start a TLS session if a TLS
session is already active.
<span class="grey">Hansen Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. QUIT Command</span>
Syntax:
quit-command = "QUIT" CRLF
When the client issues the QUIT command, the MTQP session terminates.
The QUIT command has no parameters. The server MUST respond with a
successful response. The client MAY close the session from its end
immediately after issuing this command (if the client is on an
operating system where this does not cause problems).
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Pipelining</span>
The MTQP client may elect to transmit groups of MTQP commands in
batches without waiting for a response to each individual command.
The MTQP server MUST process the commands in the order received.
Specific commands may place further constraints on pipelining. For
example, STARTTLS must be the last command in a batch of MTQP
commands.
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a>. Examples</span>
The following two examples are identical:
Example #13 :
C: TRACK <tracking-id> YWJjZGVmZ2gK
S: +OK+ Tracking information follows
S:
S: ... tracking details #1 go here ...
S: .
C: TRACK <tracking-id-2> QUJDREVGR0gK
S: +OK+ Tracking information follows
S:
S: ... tracking details #2 go here ...
S: .
<span class="grey">Hansen Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
Example #14 :
C: TRACK <tracking-id> YWJjZGVmZ2gK
C: TRACK <tracking-id-2> QUJDREVGR0gK
S: +OK+ Tracking information follows
S:
S: ... tracking details #1 go here ...
S: .
S: +OK+ Tracking information follows
S:
S: ... tracking details #2 go here ...
S: .
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. The MTQP URI Scheme</span>
<span class="h3"><a class="selflink" id="section-9.1" href="#section-9.1">9.1</a>. Intended usage</span>
The MTQP URI scheme is used to designate MTQP servers on Internet
hosts accessible using the MTQP protocol. It performs an MTQP query
and returns tracking status information.
<span class="h3"><a class="selflink" id="section-9.2" href="#section-9.2">9.2</a>. URI Scheme Name</span>
The name of the URI scheme is "mtqp".
<span class="h3"><a class="selflink" id="section-9.3" href="#section-9.3">9.3</a>. URI Scheme Syntax</span>
An MTQP URI takes one of the following forms:
mtqp://<mserver>/track/<unique-envid>/<mtrk-secret>
mtqp://<mserver>:<port>/track/<unique-envid>/<mtrk-secret>
The first form is used to refer to an MTQP server on the standard
port, while the second form specifies a non-standard port. Both of
these forms specify that the TRACK command is to be issued using the
given tracking id (unique-envid) and authorization secret (mtrk-
secret). The path element "/track/" MUST BE treated case
insensitively, but the unique-envid and mtrk-secret MUST NOT be.
<span class="h4"><a class="selflink" id="section-9.3.1" href="#section-9.3.1">9.3.1</a>. Formal Syntax</span>
This is an ABNF description of the MTQP URI.
mtqp-uri = "mtqp://" authority "/track/" unique-envid "/" mtrk-secret
<span class="grey">Hansen Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
<span class="h3"><a class="selflink" id="section-9.4" href="#section-9.4">9.4</a>. Encoding Rules</span>
The encoding of unique-envid is discussed in [<a href="#ref-RFC-MTRK-ESMTP" title=""SMTP Service Extension for Message Tracking"">RFC-MTRK-ESMTP</a>].
Mtrk-secret is required to be base64 encoded. If the "/", "?" and
"%" octets appear in unique-envid or mtrk-secret, they are further
required to be represented by a "%" followed by two hexadecimal
characters. (The two characters give the hexadecimal representation
of that octet).
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. IANA Considerations</span>
System port number 1038 has been assigned to the Message Tracking
Query Protocol by the Internet Assigned Numbers Authority (IANA).
The service name "MTQP" has been registered with the IANA.
The IANA has also registered the URI registration template found in
<a href="#appendix-A">Appendix A</a> in accordance with [<a href="#ref-BCP35" title=""Registration Procedures for URL Scheme Names"">BCP35</a>].
This document requests that IANA maintain one new registry: MTQP
options. The registry's purpose is to register options to this
protocol. Options whose names do not begin with "vnd." MUST be
defined in a standards track or IESG approved experimental RFC. New
MTQP options MUST include the following information as part of their
definition:
option identifier
option parameters
added commands
standard commands affected
specification reference
discussion
One MTQP option is defined in this document, with the following
registration definition:
option identifier: STARTTLS
option parameters: none
added commands: STARTTLS
standard commands affected: none
specification reference: <a href="./rfc3887">RFC 3887</a>
discussion: see <a href="./rfc3887">RFC 3887</a>
Additional vendor-specific options for this protocol have names that
begin with "vnd.". After the "vnd." would appear the reversed domain
name of the vendor, another dot ".", and a name for the option
itself. For example, "vnd.com.example.extinfo" might represent a
<span class="grey">Hansen Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
vendor-specific extension providing extended information by the owner
of the "example.com" domain. These names MAY be registered with
IANA.
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. Security Considerations</span>
If the originator of a message were to delegate his or her tracking
request to a third party, this would be vulnerable to snooping over
unencrypted sessions. The user can decide on a message-by-message
basis if this risk is acceptable.
The security of tracking information is dependent on the randomness
of the secret chosen for each message and the level of exposure of
that secret. If different secrets are used for each message, then
the maximum exposure from tracking any message will be that single
message for the time that the tracking information is kept on any
MTQP server. If this level of exposure is too much, TLS may be used
to reduce the exposure further.
It should be noted that message tracking is not an end-to-end
mechanism. Thus, if an MTQP client/server pair decide to use TLS
confidentiality, they are not securing tracking queries with any
prior or successive MTQP servers.
Both the MTQP client and server must check the result of the TLS
negotiation to see whether acceptable authentication or
confidentiality was achieved. Ignoring this step completely
invalidates using TLS for security. The decision about whether
acceptable authentication or confidentiality was achieved is made
locally, is implementation-dependent, and is beyond the scope of this
document.
The MTQP client and server should note carefully the result of the
TLS negotiation. If the negotiation results in no confidentiality,
or if it results in confidentiality using algorithms or key lengths
that are deemed not strong enough, or if the authentication is not
good enough for either party, the client may choose to end the MTQP
session with an immediate QUIT command, or the server may choose to
not accept any more MTQP commands.
A man-in-the-middle attack can be launched by deleting the "STARTTLS"
option response from the server. This would cause the client not to
try to start a TLS session. An MTQP client can protect against this
attack by recording the fact that a particular MTQP server offers TLS
during one session and generating an alarm if it does not appear in
an option response for a later session.
<span class="grey">Hansen Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
Similarly, the identity of the server as expressed in the server's
certificate should be cached, and an alarm generated if they do not
match in a later session.
If TLS is not used, a tracking request is vulnerable to replay
attacks, such that a snoop can later replay the same handshake again
to potentially gain more information about a message's status.
Before the TLS handshake has begun, any protocol interactions are
performed in the clear and may be modified by an active attacker.
For this reason, clients and servers MUST discard any knowledge
obtained prior to the start of the TLS handshake upon completion of
the TLS handshake.
If a client/server pair successfully performs a TLS handshake and the
server does chaining referrals, then the server SHOULD attempt to
negotiate TLS at the same (or better) security level at the next hop.
In a hop-by-hop scenario, STARTTLS is a request for "best effort"
security and should be treated as such.
SASL is not used because authentication is per message rather than
per user.
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>. Protocol Syntax</span>
This is a collected ABNF description of the MTQP protocol.
mtqp-uri = "mtqp://" authority "/track/" unique-envid "/" mtrk-secret
conversation = command-response *(client-command command-response)
; client side
client-command = track-command / starttls-command / quit-command
/comment-command
track-command = "TRACK" 1*WSP unique-envid 1*WSP mtrk-secret CRLF
mtrk-secret = base64
starttls-command = "STARTTLS" 1*WSP domain *WSP CRLF
domain = (sub-domain 1*("." sub-domain))
quit-command = "QUIT" CRLF
comment-command = "COMMENT" opt-text CRLF
<span class="grey">Hansen Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
; server side
command-response = success-response / temp-response / error-response /
bad-response
temp-response = "-TEMP" response-info opt-text CRLF
opt-text = [WSP *(VCHAR / WSP)]
error-response = "-ERR" response-info opt-text CRLF
bad-response = "-BAD" response-info opt-text CRLF
success-response = single-line-success / multi-line-success
single-line-success = "+OK" response-info opt-text CRLF
multi-line-success = "+OK+" response-info opt-text CRLF
*dataline dotcrlf
dataline = *998OCTET CRLF
dotcrlf = "." CRLF
NAMECHAR = ALPHA / DIGIT / "-" / "_"
response-info = *( "/" ( "admin" / "unavailable" / "unsupported"
/ "tls-in-progress" / "insecure" / "tls-required" / 1*NAMECHAR ) )
<span class="h2"><a class="selflink" id="section-13" href="#section-13">13</a>. Acknowledgements</span>
The description of STARTTLS is based on [<a href="#ref-RFC-SMTP-TLS" title=""SMTP Service Extension for Secure SMTP over Transport Layer Security"">RFC-SMTP-TLS</a>].
<span class="grey">Hansen Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
<span class="h2"><a class="selflink" id="section-14" href="#section-14">14</a>. References</span>
<span class="h3"><a class="selflink" id="section-14.1" href="#section-14.1">14.1</a>. Normative References</span>
[<a id="ref-RFC-MIME">RFC-MIME</a>] Freed, N. and N. Borenstein, "Multipurpose
Internet Mail Extensions (MIME) Part One: Format
of Internet Message Bodies", <a href="./rfc2045">RFC 2045</a>, November
1996.
[<a id="ref-RFC-ABNF">RFC-ABNF</a>] Crocker, D., Ed. and P. Overell, "Augmented BNF
for Syntax Specifications: ABNF", <a href="./rfc2234">RFC 2234</a>,
November 1997.
[<a id="ref-RFC-SRV">RFC-SRV</a>] Gulbrandsen, A., Vixie, P., and L. Esibov, "A DNS
RR for specifying the location of services (DNS
SRV)", <a href="./rfc2782">RFC 2782</a>, February 2000.
[<a id="ref-RFC-SMTP">RFC-SMTP</a>] Klensin, J., "Simple Mail Transfer Protocol", <a href="./rfc2821">RFC</a>
<a href="./rfc2821">2821</a>, April 2001.
[<a id="ref-RFC-SMTPEXT">RFC-SMTPEXT</a>] Myers, J., "SMTP Service Extension for
Authentication", <a href="./rfc2554">RFC 2554</a>, March 1999.
[<a id="ref-RFC-MTRK-ESMTP">RFC-MTRK-ESMTP</a>] Allman, E. and T. Hansen, "SMTP Service Extension
for Message Tracking", <a href="./rfc3885">RFC 3885</a>, September 2004.
[<a id="ref-RFC-MTRK-MODEL">RFC-MTRK-MODEL</a>] Hansen, T., "Message Tracking Models and
Requirements", <a href="./rfc3885">RFC 3885</a>, September 2004.
[<a id="ref-RFC-MTRK-TSN">RFC-MTRK-TSN</a>] Allman, E., "The Message/Tracking-Status MIME
Extension", <a href="./rfc3886">RFC 3886</a>, September 2004.
[<a id="ref-RFC-URI">RFC-URI</a>] Berners-Lee, T., Fielding, R. and L. Masinter,
"Uniform Resource Identifiers (URI): Generic
Syntax", <a href="./rfc2396">RFC 2396</a>, August 1998.
[<a id="ref-TLS">TLS</a>] Dierks, T. and C. Allen, "The TLS Protocol Version
1.0", <a href="./rfc2246">RFC 2246</a>, January 1999.
<span class="grey">Hansen Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
<span class="h3"><a class="selflink" id="section-14.2" href="#section-14.2">14.2</a>. Informational References</span>
[<a id="ref-BCP35">BCP35</a>] Petke, R. and I. King, "Registration Procedures
for URL Scheme Names", <a href="https://www.rfc-editor.org/bcp/bcp35">BCP 35</a>, <a href="./rfc2717">RFC 2717</a>, November
1999.
[<a id="ref-RFC-SHA1">RFC-SHA1</a>] Eastlake, D. and P. Jones, "US Secure Hash
Algorithm 1 (SHA1)", <a href="./rfc3174">RFC 3174</a>, September 2001.
[<a id="ref-RFC-KEYWORDS">RFC-KEYWORDS</a>] Bradner, S., "Key words for use in RFCs to
Indicate Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>,
March 1997.
[<a id="ref-RFC-SMTP-TLS">RFC-SMTP-TLS</a>] Hoffman, P., "SMTP Service Extension for Secure
SMTP over Transport Layer Security", <a href="./rfc3207">RFC 3207</a>,
February 2002.
[<a id="ref-RFC-X509">RFC-X509</a>] Housley, R., Polk, W., Ford, W. and D. Solo,
"Internet X.509 Public Key Infrastructure
Certificate and Certificate Revocation List (CRL)
Profile", <a href="./rfc3280">RFC 3280</a>, April 2002.
[<a id="ref-POP3">POP3</a>] Myers, J. and M. Rose, "Post Office Protocol -
Version 3", STD 53, <a href="./rfc1939">RFC 1939</a>, May 1996.
[<a id="ref-NNTP">NNTP</a>] Kantor, B. and P. Lapsley, "Network News Transfer
Protocol", <a href="./rfc977">RFC 977</a>, February 1986.
<span class="grey">Hansen Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. MTQP URI Registration Template</span>
Scheme name: mtqp
Scheme syntax: see <a href="#section-9.1">section 9.1</a>
Character encoding considerations: see <a href="#section-9.4">section 9.4</a>
Intended usage: see <a href="#section-9.3">section 9.3</a>
Applications and/or protocols which use this scheme: MTQP
Interoperability considerations: as specified for MTQP
Security considerations: see <a href="#section-11.0">section 11.0</a>
Relevant publications: [<a href="#ref-RFC-MTRK-ESMTP" title=""SMTP Service Extension for Message Tracking"">RFC-MTRK-ESMTP</a>], [<a href="#ref-RFC-MTRK-MODEL" title=""Message Tracking Models and Requirements"">RFC-MTRK-MODEL</a>],
[<a href="#ref-RFC-MTRK-TSN" title=""The Message/Tracking-Status MIME Extension"">RFC-MTRK-TSN</a>]
Contact: MSGTRK Working Group
Author/Change Controller: IESG
Author's Address
Tony Hansen
AT&T Laboratories
Middletown, NJ 07748
USA
Phone: +1.732.420.8934
EMail: tony+msgtrk@maillennium.att.com
<span class="grey">Hansen Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc3887">RFC 3887</a> Message Tracking Query Protocol September 2004</span>
Full Copyright Statement
Copyright (C) The Internet Society (2004).
This document is subject to the rights, licenses and restrictions
contained in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a>, and except as set forth therein, the authors
retain all their rights.
This document and the information contained herein are provided on an
"AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/S HE
REPRESENTS OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND THE
INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF
THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Intellectual Property
The IETF takes no position regarding the validity or scope of any
Intellectual Property Rights or other rights that might be claimed to
pertain to the implementation or use of the technology described in
this document or the extent to which any license under such rights
might or might not be available; nor does it represent that it has
made any independent effort to identify any such rights. Information
on the IETF's procedures with respect to rights in IETF Documents can
be found in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and <a href="https://www.rfc-editor.org/bcp/bcp79">BCP 79</a>.
Copies of IPR disclosures made to the IETF Secretariat and any
assurances of licenses to be made available, or the result of an
attempt made to obtain a general license or permission for the use of
such proprietary rights by implementers or users of this
specification can be obtained from the IETF on-line IPR repository at
<a href="http://www.ietf.org/ipr">http://www.ietf.org/ipr</a>.
The IETF invites any interested party to bring to its attention any
copyrights, patents or patent applications, or other proprietary
rights that may cover technology that may be required to implement
this standard. Please address the information to the IETF at ietf-
ipr@ietf.org.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Hansen Standards Track [Page 23]
</pre>
|