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
|
Network Working Group J. Livingood
Request for Comments: 5278 Comcast Cable Communications
Category: Standards Track D. Troshynski
Acme Packet
July 2008
IANA Registration of Enumservices for Voice and Video Messaging
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.
Abstract
This document registers the Enumservice named "vmsg", which is used
to facilitate the real-time routing of voice, video, and unified
communications to a messaging system. This vmsg Enumservice
registers three Enumservice types: "voicemsg", "videomsg", and
"unifmsg". Each type also registers the subtypes "sip", "sips",
"http", and "https", as well as the subtype "tel" for the "voicemsg"
type.
Livingood & Troshynski Standards Track [Page 1]
^L
RFC 5278 VMSG Enumservice July 2008
Table of Contents
1. Introduction ....................................................3
1.1. Selected Use Cases for Illustrative Purposes ...............4
1.2. Consideration of Other Existing Enumservices ...............5
2. Distribution of Data ............................................5
3. Security Considerations .........................................5
4. ENUM Service Registration for voicemsg ..........................6
4.1. Registration for "voicemsg" with Subtype "sip" .............6
4.2. Registration for "voicemsg" with Subtype "sips" ............7
4.3. Registration for "voicemsg" with Subtype "tel" .............7
4.4. Registration for "voicemsg" with Subtype "http" ............8
4.5. Registration for "voicemsg" with Subtype "https" ...........9
5. ENUM Service Registration for videomsg .........................10
5.1. Registration for "videomsg" with Subtype "sip" ............10
5.2. Registration for "videomsg" with Subtype "sips" ...........10
5.3. Registration for "videomsg" with Subtype "http" ...........11
5.4. Registration for "videomsg" with Subtype "https" ..........12
6. ENUM Service Registration for unifmsg ..........................13
6.1. Registration for "unifmsg" with Subtype "sip" .............13
6.2. Registration for "unifmsg" with Subtype "sips" ............13
6.3. Registration for "unifmsg" with Subtype "http" ............14
6.4. Registration for "unifmsg" with Subtype "https" ...........15
7. Selected Examples for Illustrative Purposes ....................16
7.1. Example Using a 'sip' URI .................................16
7.2. Example Using a 'tel' URI .................................16
7.3. Example Using a Backreference .............................16
7.4. Example Using a 'sip' URI without a Telephone Number ......17
7.5. Example of Failover Using E2U+videomsg:sip ................17
8. Implementation Recommendations .................................17
8.1. Call Processing When Multiple Records Are Returned ........17
8.2. NAPTR Configuration Issues ................................18
9. IANA Considerations ............................................18
10. Acknowledgements ..............................................18
11. Contributors ..................................................19
12. References ....................................................19
12.1. Normative References .....................................19
12.2. Informative References ...................................20
Livingood & Troshynski Standards Track [Page 2]
^L
RFC 5278 VMSG Enumservice July 2008
1. Introduction
ENUM (E.164 Number Mapping, RFC 3761 [1]) is a technology that
transforms E.164 numbers (the International Public Telecommunication
Numbering Plan, ITU-T Recommendation E.164 [2]) into domain names and
then uses DNS (Domain Name System, RFC 1034 [3]) delegation through
NS records and Naming Authority Pointer (NAPTR) records (Dynamic
Delegation Discovery System (DDDS) Part Three: The Domain Name System
(DNS) Database, RFC 3403 [4]) to look up what services are available
for a specific domain name.
This document registers Enumservices according to the guidelines
given in RFC 3761 [1] to be used for provisioning in the services
field of a NAPTR [4] resource record to indicate the types of
functionality associated with an end point and/or telephone number.
The registration is defined within the DDDS (Dynamic Delegation
Discovery System [4][5][6][7][8]) hierarchy, for use with the "E2U"
DDDS Application defined in RFC 3761.
Voice messaging systems are used widely with telephony and voice
communication services. The need for a voice messaging service type
has become clear in order to provide certain applications with direct
access to various voice messaging services (for example, voicemail),
most typically via the use of SIP.
The authors considered the use of Voice Profile for Internet Mail
(VPIM) [14] but found that VPIM was best suited to the non-real-time
and non-session-based routing of a voice message once it had been
deposited into a voice messaging system. Thus, VPIM was a good
solution for the non-real-time and non-session-based routing of voice
messages between and within domains, but it did not enable real-time
interaction with a voice messaging system.
Thus, a need has been identified for this voice messaging service
type that would enable, for example, some of the use cases listed in
this section.
Video messaging systems, sometimes called visual voice messaging
systems, are beginning to be used with real-time communication
services. The need for a video messaging service type has become
clear in order to provide certain applications with direct access to
various video messaging services, most typically via the use of SIP.
Thus, a need has been identified for this video messaging service
type that would enable, for example, some of the use cases listed in
this section.
Livingood & Troshynski Standards Track [Page 3]
^L
RFC 5278 VMSG Enumservice July 2008
Finally, several service providers and software developers have
indicated that their system for voice messaging and video messaging
either have been or soon will be unified into a single system. As
such, they desired to have the option of using an Enumservice type
that represents a subscriber's mailbox as being a so-called unified
messaging repository. Thus, a need has been identified for this
unified voice and video messaging service type that would enable, for
example, some of the use cases listed in this section.
1.1. Selected Use Cases for Illustrative Purposes
The following is a partial, non-exclusive list of use cases that the
vmsg Enumservice could address:
* A called party is busy or does not answer a call. A client or
server then determines that a messaging service should be used and
sends the calling party's session to such a service. The client or
server needs to be able to determine which server to direct this
real-time session to, whether that is within or outside of the
called party's domain.
* Similar to the above use case, a real-time session is attempted to
a messaging system, but that system is currently unavailable.
Since multiple service type records may be returned by the original
ENUM query, the client or server could then attempt to initiate a
session with one or more backup messaging servers in a manner that
is transparent to the calling party and that supports better
overall availability of a messaging service.
* Similar to the above use case, this service type could be used to
balance load across multiple messaging servers, whether those are
in the same or in different physical locations.
* A user with an account on a messaging service needs to connect to
the messaging service in order to retrieve messages. They initiate
a real-time session, and an ENUM query is performed to discover the
messaging server that holds its mailbox.
* In the process of invoking and supporting a real-time, automated
and interactive session with a user, whether for message deposit or
retrieval, VoiceXML files are referenced and utilized, via either
HTTP or HTTPS. Multiple VoiceXML servers could be associated with
a user and returned via ENUM query, for the purposes of load
balancing, for example.
Livingood & Troshynski Standards Track [Page 4]
^L
RFC 5278 VMSG Enumservice July 2008
1.2. Consideration of Other Existing Enumservices
The authors considered whether this service type could simply use the
SIP Enumservice type [19], but found that it does not satisfy their
voice messaging requirements, particularly given the non-SIP URI sub-
types specified herein. Even with sub-types for SIP URIs, however,
there are challenges to using the SIP Enumservice type. For example,
a request for access to such a service could be extended to the
requesting SIP client, or User Agent Client (UAC), rather than
relying upon the local policy of a SIP server, or User Agent Server
(UAS), which means that special routing logic within a UAS cannot be
relied upon to solve this problem. More importantly, however, the
authors have found that without this service type, a UAC or UAS will
be presented with multiple SIP URIs, with no ability other than in
non-standards-based routing rules or application logic to recognize
which one is related to a voice messaging, video messaging, or
unified voice and video messaging service.
2. Distribution of Data
The authors believe that it is more likely that these records will be
distributed on a purely private basis, but they may also be
distributed in public ENUM trees. Distribution of this NAPTR data
could be either (a) on a private basis within a service provider's
internal network, (b) on a private basis between one or more parties
using a variety of security mechanisms to prohibit general public
access, or (c) openly available.
3. Security Considerations
DNS, as used by ENUM, is a global, distributed database. Should
implementers of this specification use e164.arpa or any other
publicly available domain as the tree for maintaining voicemsg
Enumservice data, this information would be visible to anyone
anonymously. While this is not qualitatively different from
publication in a Telephone Directory, it does open or ease access to
such data without any indication that such data has been accessed or
by whom it has been accessed.
Such data harvesting by third parties is often used to generate lists
of targets for unsolicited information. Thus, a third party could
use this to generate a list that it can use to make unsolicited
telemarketing phone calls, or so-called SPAM over Internet Telephony
(SPIT). Many countries have do-not-call registries or other legal or
regulatory mechanisms in place to deal with such abuses.
Livingood & Troshynski Standards Track [Page 5]
^L
RFC 5278 VMSG Enumservice July 2008
As noted earlier, carriers, service providers, and other users may
simply choose not to publish such information in the public e164.arpa
tree, but may instead simply publish this in their internal ENUM
routing database that is only able to be queried by trusted elements
of their network and/or partner networks, such as softswitches and
SIP proxy servers. They may also choose to publish such information
in a carrier-only branch of the e164.arpa tree, should one be
created.
Although an E.164 telephone number does not appear to reveal as much
identity information about a user as a name in the format
sip:username@hostname or email:username@hostname, the information is
still publicly available; thus, there is still the risk of unwanted
communication.
An analysis of threats specific to the dependence of ENUM on the DNS
and the applicability of DNSSEC [16] to this is provided in RFC 3761
[1]. A thorough analysis of threats to the DNS itself is covered in
RFC 3833 [17].
4. ENUM Service Registration for voicemsg
4.1. Registration for "voicemsg" with Subtype "sip"
Enumservice Name: "voicemsg"
Enumservice Type: "voicemsg"
Enumservice Subtypes: "sip"
URI Schemes: 'sip:'
Functional Specification:
This Enumservice indicates that the remote resource identified can be
addressed by the associated URI scheme in order to initiate a voice
communication session to a voice messaging system.
Security Considerations: See Section 3.
Intended Usage: COMMON
Authors:
Jason Livingood (jason_livingood@cable.comcast.com)
Don Troshynski (dtroshynski@acmepacket.com)
Livingood & Troshynski Standards Track [Page 6]
^L
RFC 5278 VMSG Enumservice July 2008
Any other information the author deems interesting:
Implementers should review a non-exclusive list of examples below in
Section 7.
4.2. Registration for "voicemsg" with Subtype "sips"
Enumservice Name: "voicemsg"
Enumservice Type: "voicemsg"
Enumservice Subtypes: "sips"
URI Schemes: 'sips:'
Functional Specification:
This Enumservice indicates that the remote resource identified can be
addressed by the associated URI scheme in order to initiate a voice
communication session to a voice messaging system.
Security Considerations: See Section 3.
Intended Usage: COMMON
Authors:
Jason Livingood (jason_livingood@cable.comcast.com)
Don Troshynski (dtroshynski@acmepacket.com)
Any other information the author deems interesting:
Implementers should review a non-exclusive list of examples below in
Section 7.
4.3. Registration for "voicemsg" with Subtype "tel"
Enumservice Name: "voicemsg"
Enumservice Type: "voicemsg"
Enumservice Subtype: "tel"
URI Schemes: 'tel:'
Livingood & Troshynski Standards Track [Page 7]
^L
RFC 5278 VMSG Enumservice July 2008
Functional Specification:
This Enumservice indicates that the remote resource identified can be
addressed by the associated URI scheme in order to initiate a voice
communication session to a voice messaging system.
Security Considerations: See Section 3.
Intended Usage: COMMON
Authors:
Jason Livingood (jason_livingood@cable.comcast.com)
Don Troshynski (dtroshynski@acmepacket.com)
Any other information the author deems interesting:
Implementers should review a non-exclusive list of examples below in
Section 7.
4.4. Registration for "voicemsg" with Subtype "http"
Enumservice Name: "voicemsg"
Enumservice Type: "voicemsg"
Enumservice Subtype: "http"
URI Schemes: 'http:'
Functional Specification:
This Enumservice indicates that the remote resource identified by the
associated URI scheme is capable of being a source of information.
Note that the kind of information retrieved can be manifold. Usually,
contacting a resource by an 'http:' [11] URI provides a document.
This document can contain references that will trigger the download
of many different kinds of information, such as text, audio, video,
executable code, or even voice message files. Thus, one cannot be
more specific about the kind of information expected when contacting
the resource.
Security Considerations: See Section 3.
Intended Usage: COMMON
Livingood & Troshynski Standards Track [Page 8]
^L
RFC 5278 VMSG Enumservice July 2008
Authors:
Jason Livingood (jason_livingood@cable.comcast.com)
Don Troshynski (dtroshynski@acmepacket.com)
Any other information the author deems interesting:
Implementers should review a non-exclusive list of examples below in
Section 7.
4.5. Registration for "voicemsg" with Subtype "https"
Enumservice Name: "voicemsg"
Enumservice Type: "voicemsg"
Enumservice Subtype: "https"
URI Schemes: 'https:'
Functional Specification:
This Enumservice indicates that the remote resource identified by the
associated URI scheme is capable of being a source of information,
which can be contacted using TLS or the Secure Socket Layer protocol.
Note that the kind of information retrieved can be manifold. Usually,
contacting a resource by an 'https:' [12] URI provides a document.
This document can contain references that will trigger the download
of many different kinds of information, such as text, audio, video,
executable code, or even voice message files. Thus, one cannot be
more specific about the kind of information expected when contacting
the resource.
Security Considerations: See Section 3.
Intended Usage: COMMON
Authors:
Jason Livingood (jason_livingood@cable.comcast.com)
Don Troshynski (dtroshynski@acmepacket.com)
Any other information the author deems interesting:
Implementers should review a non-exclusive list of examples below in
Section 7.
Livingood & Troshynski Standards Track [Page 9]
^L
RFC 5278 VMSG Enumservice July 2008
5. ENUM Service Registration for videomsg
5.1. Registration for "videomsg" with Subtype "sip"
Enumservice Name: "videomsg"
Enumservice Type: "videomsg"
Enumservice Subtypes: "sip"
URI Schemes: 'sip:'
Functional Specification:
This Enumservice indicates that the remote resource identified can be
addressed by the associated URI scheme in order to initiate a video
communication session to a video messaging system.
Security Considerations: See Section 3.
Intended Usage: COMMON
Authors:
Jason Livingood (jason_livingood@cable.comcast.com)
Don Troshynski (dtroshynski@acmepacket.com)
Any other information the author deems interesting:
Implementers should review a non-exclusive list of examples below in
Section 7.
5.2. Registration for "videomsg" with Subtype "sips"
Enumservice Name: "videomsg"
Enumservice Type: "videomsg"
Enumservice Subtypes: "sips"
URI Schemes: 'sips:'
Functional Specification:
This Enumservice indicates that the remote resource identified can be
addressed by the associated URI scheme in order to initiate a video
communication session to a video messaging system.
Livingood & Troshynski Standards Track [Page 10]
^L
RFC 5278 VMSG Enumservice July 2008
Security Considerations: See Section 3.
Intended Usage: COMMON
Authors:
Jason Livingood (jason_livingood@cable.comcast.com)
Don Troshynski (dtroshynski@acmepacket.com)
Any other information the author deems interesting:
Implementers should review a non-exclusive list of examples below in
Section 7.
5.3. Registration for "videomsg" with Subtype "http"
Enumservice Name: "videomsg"
Enumservice Type: "videomsg"
Enumservice Subtype: "http"
URI Schemes: 'http:'
Functional Specification:
This Enumservice indicates that the remote resource identified by the
associated URI scheme is capable of being a source of information.
Note that the kind of information retrieved can be manifold. Usually,
contacting a resource by an 'http:' [11] URI provides a document.
This document can contain references that will trigger the download
of many different kinds of information, such as text, audio, video,
executable code, or even video message files. Thus, one cannot be
more specific about the kind of information expected when contacting
the resource.
Security Considerations: See Section 3.
Intended Usage: COMMON
Authors:
Jason Livingood (jason_livingood@cable.comcast.com)
Don Troshynski (dtroshynski@acmepacket.com)
Livingood & Troshynski Standards Track [Page 11]
^L
RFC 5278 VMSG Enumservice July 2008
Any other information the author deems interesting:
Implementers should review a non-exclusive list of examples below in
Section 7.
5.4. Registration for "videomsg" with Subtype "https"
Enumservice Name: "videomsg"
Enumservice Type: "videomsg"
Enumservice Subtype: "https"
URI Schemes: 'https:'
Functional Specification:
This Enumservice indicates that the remote resource identified by the
associated URI scheme is capable of being a source of information,
which can be contacted using TLS or the Secure Socket Layer protocol.
Note that the kind of information retrieved can be manifold. Usually,
contacting a resource by an 'https:' [12] URI provides a document.
This document can contain references that will trigger the download
of many different kinds of information, such as text, audio, video,
executable code, or even video message files. Thus, one cannot be
more specific about the kind of information expected when contacting
the resource.
Security Considerations: See Section 3.
Intended Usage: COMMON
Authors:
Jason Livingood (jason_livingood@cable.comcast.com)
Don Troshynski (dtroshynski@acmepacket.com)
Any other information the author deems interesting:
Implementers should review a non-exclusive list of examples below in
Section 7.
Livingood & Troshynski Standards Track [Page 12]
^L
RFC 5278 VMSG Enumservice July 2008
6. ENUM Service Registration for unifmsg
6.1. Registration for "unifmsg" with Subtype "sip"
Enumservice Name: "unifmsg"
Enumservice Type: "unifmsg"
Enumservice Subtypes: "sip"
URI Schemes: 'sip:'
Functional Specification:
This Enumservice indicates that the remote resource identified can be
addressed by the associated URI scheme in order to initiate a unified
communication session to a unified messaging system.
Security Considerations: See Section 3.
Intended Usage: COMMON
Authors:
Jason Livingood (jason_livingood@cable.comcast.com)
Don Troshynski (dtroshynski@acmepacket.com)
Any other information the author deems interesting:
Implementers should review a non-exclusive list of examples below in
Section 7.
6.2. Registration for "unifmsg" with Subtype "sips"
Enumservice Name: "unifmsg"
Enumservice Type: "unifmsg"
Enumservice Subtypes: "sips"
URI Schemes: 'sips:'
Functional Specification:
This Enumservice indicates that the remote resource identified can be
addressed by the associated URI scheme in order to initiate a unified
communication session to a unified messaging system.
Livingood & Troshynski Standards Track [Page 13]
^L
RFC 5278 VMSG Enumservice July 2008
Security Considerations: See Section 3.
Intended Usage: COMMON
Authors:
Jason Livingood (jason_livingood@cable.comcast.com)
Don Troshynski (dtroshynski@acmepacket.com)
Any other information the author deems interesting:
Implementers should review a non-exclusive list of examples below in
Section 7.
6.3. Registration for "unifmsg" with Subtype "http"
Enumservice Name: "unifmsg"
Enumservice Type: "unifmsg"
Enumservice Subtype: "http"
URI Schemes: 'http:'
Functional Specification:
This Enumservice indicates that the remote resource identified by the
associated URI scheme is capable of being a source of information.
Note that the kind of information retrieved can be manifold. Usually,
contacting a resource by an 'http:' [11] URI provides a document.
This document can contain references that will trigger the download
of many different kinds of information, such as text, audio, video,
executable code, or even video message files. Thus, one cannot be
more specific about the kind of information expected when contacting
the resource.
Security Considerations: See Section 3.
Intended Usage: COMMON
Authors:
Jason Livingood (jason_livingood@cable.comcast.com)
Don Troshynski (dtroshynski@acmepacket.com)
Livingood & Troshynski Standards Track [Page 14]
^L
RFC 5278 VMSG Enumservice July 2008
Any other information the author deems interesting:
Implementers should review a non-exclusive list of examples below in
Section 7.
6.4. Registration for "unifmsg" with Subtype "https"
Enumservice Name: "unifmsg"
Enumservice Type: "unifmsg"
Enumservice Subtype: "https"
URI Schemes: 'https:'
Functional Specification:
This Enumservice indicates that the remote resource identified by the
associated URI scheme is capable of being a source of information,
which can be contacted using TLS or the Secure Socket Layer protocol.
Note that the kind of information retrieved can be manifold. Usually,
contacting a resource by an 'https:' [12] URI provides a document.
This document can contain references that will trigger the download
of many different kinds of information, such as text, audio, video,
executable code, or even video message files. Thus, one cannot be
more specific about the kind of information expected when contacting
the resource.
Security Considerations: See Section 3.
Intended Usage: COMMON
Authors:
Jason Livingood (jason_livingood@cable.comcast.com)
Don Troshynski (dtroshynski@acmepacket.com)
Any other information the author deems interesting:
Implementers should review a non-exclusive list of examples below in
Section 7.
Livingood & Troshynski Standards Track [Page 15]
^L
RFC 5278 VMSG Enumservice July 2008
7. Selected Examples for Illustrative Purposes
The following sub-sections document several examples that
implementers may find informative. These examples shall in no way
limit the various forms that this Enumservice may take.
7.1. Example Using a 'sip' URI
$ORIGIN 3.2.1.0.5.5.5.5.1.2.1.e164.arpa.
NAPTR 10 100 "u" "E2U+voicemsg:sip"
"!^.*$!sip:12155550123@gw.example.com!".
In this example, a calling party has attempted a session that has
gone unanswered after a certain period of time. The calling party's
session is sent to the appropriate voice messaging server, a
personalized greeting is played to the calling party, after which it
records a voice message to the called party.
7.2. Example Using a 'tel' URI
$ORIGIN 3.2.1.0.5.5.5.5.1.2.1.e164.arpa.
NAPTR 10 100 "u" "E2U+voicemsg:tel"
"!^.*$!tel:1-215-555-0123!".
In this example, a calling party has attempted a session that has
gone unanswered after a certain period of time. The calling party's
session is sent to the appropriate voice messaging server, a
personalized greeting is played to the calling party, after which it
records a voice message to the called party.
7.3. Example Using a Backreference
$ORIGIN 3.2.1.0.5.5.5.5.1.2.1.e164.arpa.
NAPTR 10 100 "u" "E2U+voicemsg:sip"
"!(^.*)$!sip:\1@example.net!".
In this example, a backreference is used to reduce the size of the
NAPTR record. The sip URI uses "\1", which would dynamically replace
the expression with the TN, in this case +12155550123.
Livingood & Troshynski Standards Track [Page 16]
^L
RFC 5278 VMSG Enumservice July 2008
7.4. Example Using a 'sip' URI without a Telephone Number
$ORIGIN 3.2.1.0.5.5.5.5.1.2.1.e164.arpa.
NAPTR 10 100 "u" "E2U+voicemsg:sip"
"!^.*$!sip:johndoe@gw.example.com!".
In this example, a calling party has attempted a session that has
gone unanswered after a certain period of time. The calling party's
session is sent to the appropriate voice messaging server, a
personalized greeting is played to the calling party, after which it
records a voice message to the called party. The URI that this
session is directed to does not include a telephone number, as this
user has multiple service that are not particularly tied to telephone
numbers whereby text, audio, video and other multimedia messages can
be received and accessed.
7.5. Example of Failover Using E2U+videomsg:sip
$ORIGIN 3.2.1.0.5.5.5.5.1.2.1.e164.arpa.
NAPTR 10 100 "u" "E2U+videomsg:sip"
"!^.*$!sip:12155550123@gw1.example.com!".
$ORIGIN 3.2.1.0.5.5.5.5.1.2.1.e164.arpa.
NAPTR 10 200 "u" "E2U+videomsg:sip"
"!^.*$!sip:12155550123@gw2.example.com!".
In this example, the preference indicates that gw1.example.com is
used first (100), and if this is unreachable, then the next higher
preference (200) is used and gw2.example.com is contacted. While out
of scope for this document, a service provider could thus mirror or
cluster a message store and fail from the primary to secondary using
the DNS in an active-standby mode.
8. Implementation Recommendations
8.1. Call Processing When Multiple Records Are Returned
It is likely that both E2U+sip and E2U+voicemsg, E2U+videomsg, and/or
E2U+unifmsg Enumservice type records will be returned for a given
query. In this case, this could result in what is essentially
E2U+sip records for real-time communications with an end user, while,
for example, the E2U+voicemsg records will be used for real-time
communications with a voice messaging service, when the called party
is not available or does not wish to be disturbed. Therefore, the
network element that receives the results of this ENUM query will
need to know enough information in order to select the voicemsg
service type, rather than the sip service type.
Livingood & Troshynski Standards Track [Page 17]
^L
RFC 5278 VMSG Enumservice July 2008
In addition, it is likely that multiple E2U+voicemsg, E2U+videomsg,
and/or E2U+unifmsg Enumservice type records will be returned for a
given query. In this case, multiple records may include order and
preference to allow recursion or load balancing. Order could be used
to designate a primary and a backup voice, video, or unified voice
and video messaging service. Preference could be used to load
balance across multiple voice, video, and/or unified voice and video
messaging servers by weight, for example.
Finally, as with multiple records resulting from a typical ENUM query
of the e164.arpa tree, it is up to the application using an ENUM
resolver to determine which record(s) to use and which record(s) to
ignore. Implementers should take this into consideration and build
logic into their applications that can select appropriately from
multiple records based on business, network, or other rules.
8.2. NAPTR Configuration Issues
Implementers may wish to consider using regular expressions in order
to reduce the size of individual NAPTRs. This will have a
significant effect on the overall size of the database involved.
9. IANA Considerations
This document registers the 'voicemsg' Enumservice type and the
subtype "tel", "sip", "sips", "http", and "https" under the
Enumservice registry described in the IANA considerations in RFC
3761. Details of this registration are provided in Section 4 of this
document.
This document registers the 'videomsg' Enumservice type and the
subtype "sip", "sips", "http", and "https" under the Enumservice
registry described in the IANA considerations in RFC 3761. Details
of this registration are provided in Section 5 of this document.
This document registers the 'unifmsg' Enumservice type and the
subtype "sip", "sips", "http", and "https" under the Enumservice
registry described in the IANA considerations in RFC 3761. Details
of this registration are provided in Section 6 of this document.
10. Acknowledgements
The authors thank Rich Ferrise, Chris Harvey, Tong Zhou, and Hadriel
Kaplan for their detailed assistance in developing the ideas behind
this document in numerous brainstorming sessions, with information
gleaned from their work to solve real application architecture
issues. The authors also thank Lawrence Conroy and Jean-Francois
Mule for their feedback in developing this document.
Livingood & Troshynski Standards Track [Page 18]
^L
RFC 5278 VMSG Enumservice July 2008
11. Contributors
Tong Zhou
Comcast Cable Communications
Email: tong_zhou@cable.comcast.com
Richard Ferrise
Comcast Cable Communications
Email: rich_ferrise@cable.comcast.com
Chris Harvey
Comcast Cable Communications
Email: chris_harvey@cable.comcast.com
Hadriel Kaplan
Acme Packet
Email: hkaplan@acmepacket.com
12. References
12.1. Normative References
[1] Faltstrom, P. and M. Mealling, "The E.164 to Uniform Resource
Identifiers (URI) Dynamic Delegation Discovery System (DDDS)
Application (ENUM)", RFC 3761, April 2004.
[2] ITU-T, "The International Public Telecommunication Numbering
Plan", Recommendation E.164, May 1997.
[3] Mockapetris, P., "Domain names - concepts and facilities", STD
13, RFC 1034, November 1987.
[4] Mealling, M., "Dynamic Delegation Discovery System (DDDS) Part
Three: The Domain Name System (DNS) Database", RFC 3403,
October 2002.
[5] Mealling, M., "Dynamic Delegation Discovery System (DDDS) Part
One: The Comprehensive DDDS", RFC 3401, October 2002.
[6] Mealling, M., "Dynamic Delegation Discovery System (DDDS) Part
Two: The Algorithm", RFC 3402, October 2002.
[7] Mealling, M., "Dynamic Delegation Discovery System (DDDS) Part
Four: The Uniform Resource Identifiers (URI)", RFC 3404,
October 2002.
Livingood & Troshynski Standards Track [Page 19]
^L
RFC 5278 VMSG Enumservice July 2008
[8] Mealling, M., "Dynamic Delegation Discovery System (DDDS) Part
Five: URI.ARPA Assignment Procedures", BCP 65, RFC 3405,
October 2002.
[9] Schulzrinne, H., "The tel URI for Telephone Numbers", RFC 3966,
December 2004.
[10] Rosenberg, J., Schulzrinne, H., Camarillo, G., Johnston, A.,
Peterson, J., Sparks, R., Handley, M., and E. Schooler, "SIP:
Session Initiation Protocol", RFC 3261, June 2002.
[11] Fielding, R., Gettys, J., Mogul, J., Frystyk, H., Masinter, L.,
Leach, P., and T. Berners-Lee, "Hypertext Transfer Protocol --
HTTP/1.1", RFC 2616, June 1999.
[12] Rescorla, E., "HTTP Over TLS", RFC 2818, May 2000.
12.2. Informative References
[13] Peterson, J., Liu, H., Yu, J., and B. Campbell, "Using E.164
numbers with the Session Initiation Protocol (SIP)", RFC 3824,
June 2004.
[14] Vaudreuil, G., "Voice Message Routing Service", RFC 4238,
October 2005.
[15] Brandner, R., Conroy, L., and R. Stastny, "IANA Registration
for Enumservices email, fax, mms, ems, and sms", RFC 4355,
January 2006.
[16] Arends, R., Austein, R., Larson, M., Massey, D., and S. Rose,
"Protocol Modifications for the DNS Security Extensions", RFC
4035, March 2005.
[17] Atkins, D. and R. Austein, "Threat Analysis of the Domain Name
System (DNS)", RFC 3833, August 2004.
[18] Foster, M., McGarry, T., and J. Yu, "Number Portability in the
Global Switched Telephone Network (GSTN): An Overview", RFC
3482, February 2003.
[19] Peterson, J., "enumservice registration for Session Initiation
Protocol (SIP) Addresses-of-Record", RFC 3764, April 2004.
Livingood & Troshynski Standards Track [Page 20]
^L
RFC 5278 VMSG Enumservice July 2008
Authors' Addresses
Jason Livingood
Comcast Cable Communications
One Comcast Center
1701 John F. Kennedy Boulevard
Philadelphia, PA 19103
USA
EMail: jason_livingood@cable.comcast.com
Donald Troshynski
Acme Packet
EMail: dtroshynski@acmepacket.com
Livingood & Troshynski Standards Track [Page 21]
^L
RFC 5278 VMSG Enumservice July 2008
Full Copyright Statement
Copyright (C) The IETF Trust (2008).
This document is subject to the rights, licenses and restrictions
contained in BCP 78, 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/SHE REPRESENTS
OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY, THE IETF TRUST 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 procedures with respect to rights in RFC documents can be
found in BCP 78 and BCP 79.
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
http://www.ietf.org/ipr.
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.
Livingood & Troshynski Standards Track [Page 22]
^L
|