Commit 1b0e6524 authored by mewburn's avatar mewburn
Browse files

Generic messaging updates

Extend MessagingIRI to support replacing EmailIRI,
and for other generic messaging systems.

Extend Messaging-System-Type with:
	undefined(0), smtp(2), pop3(3), imap4(4),
	webmail(5), mms(6), rcs(7), sms(8)

Extend Messaging-Event with:
	partial-retrieve(8)

Extend Messaging-Box-Event with:
	start-of-interception-with-session-active(32)
	end-of-interception-with-session-active(33)

Extend Messaging-Party-Validity with:
	rejected(3)

Extend Messaging-Property with:
	server-octets-sent
	client-octets-sent
parent e648774f
Loading
Loading
Loading
Loading
+20 −5
Original line number Diff line number Diff line
@@ -267,7 +267,16 @@ MessagingIRI ::= SEQUENCE
Messaging-System-Type ::= ENUMERATED
{
    unified-messaging(1),
    ...
    ...,
    undefined(0),
        -- The protocol is not known or not representable by the current enumeration
    smtp(2),
    pop3(3),
    imap4(4),
    webmail(5),
    mms(6),
    rcs(7),
    sms(8)
}

Messaging-Event-Category ::= CHOICE
@@ -288,7 +297,8 @@ Messaging-Event ::= ENUMERATED
    slamdown(5),
    ...,
    calendar(6),
    contact(7)
    contact(7),
    partial-retrieve(8)
}

Messaging-Box-Event ::= ENUMERATED
@@ -325,7 +335,9 @@ Messaging-Box-Event ::= ENUMERATED
    auto-play-enable(28),
    auto-play-disable(29),
    header-play-enable(30),
    header-play-disable(31)
    header-play-disable(31),
    start-of-interception-with-session-active(32),
    end-of-interception-with-session-active(33)
}

Messaging-Notification-Event ::= ENUMERATED
@@ -436,7 +448,8 @@ Messaging-Party-Validity ::= ENUMERATED
    unknown(0),
    trusted(1),
    untrusted(2),
    ...
    ...,
    rejected(3)
}

Messaging-Copy-Qualifier ::= ENUMERATED
@@ -474,7 +487,9 @@ Messaging-Property ::= CHOICE
    message-status      [9] Messaging-Property-Message-Status,
    requested-reports   [10] Messaging-Property-Requested-Reports,
    expires             [11] GeneralizedTime,
    message-date        [12] GeneralizedTime
    message-date        [12] GeneralizedTime,
    server-octets-sent  [13] INTEGER (0..18446744073709551615) OPTIONAL,
    client-octets-sent  [14] INTEGER (0..18446744073709551615) OPTIONAL
}

Messaging-Property-Priority ::= ENUMERATED