~ubuntu-branches/ubuntu/wily/net-snmp/wily-proposed

« back to all changes in this revision

Viewing changes to mibs/MTA-MIB.txt

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2010-06-28 14:59:36 UTC
  • mfrom: (1.2.3 upstream) (1.1.12 sid)
  • Revision ID: james.westby@ubuntu.com-20100628145936-cbiallic69pn044g
Tags: 5.4.3~dfsg-1ubuntu1
* Merge from debian unstable.  Remaining changes:
  - Set Ubuntu maintainer address.
  - net-snmp-config: Use bash. (LP: #104738)
  - Removed multiuser option when calling update-rc.d. (LP: #254261)
  - debian/snmpd.init: LSBify the init script.
  - debian/patches/52_fix_snmpcmd_1_typo.patch: Adjust a typo in snmpcmd.1
    (LP: #250459)
  - debian/snmpd.postinst: source debconf before doing work, LP: #589056
  - debian/snmp.preinst, debian/snmp.prerm: kill any/all processes owned by
    snmp user before install/uninstall, LP: #573391
  - Add apport hook (LP: #533603):
  - debian/{snmp,snmpd}.apport: Added.
  - debian/control: Build-depends on dh-apport.
  - debian/rules: 
    + Add --with apport.
    + override_dh_apport to install hook on snmpd package only.
 * Dropped patches:
   - debian/patches/99-fix-ubuntu-div0.patch: Fix dvision by zero.. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
MTA-MIB DEFINITIONS ::= BEGIN
2
 
 
3
 
IMPORTS
4
 
   OBJECT-TYPE, Counter32, Gauge32, MODULE-IDENTITY, mib-2
5
 
     FROM SNMPv2-SMI
6
 
   TimeInterval
7
 
     FROM SNMPv2-TC
8
 
   MODULE-COMPLIANCE, OBJECT-GROUP
9
 
     FROM SNMPv2-CONF
10
 
   SnmpAdminString
11
 
       FROM SNMP-FRAMEWORK-MIB
12
 
   applIndex, URLString
13
 
     FROM NETWORK-SERVICES-MIB;
14
 
 
15
 
mta MODULE-IDENTITY
16
 
   LAST-UPDATED "200003030000Z"
17
 
   ORGANIZATION "IETF Mail and Directory Management Working Group"
18
 
   CONTACT-INFO
19
 
     "        Ned Freed
20
 
 
21
 
      Postal: Innosoft International, Inc.
22
 
              1050 Lakes Drive
23
 
              West Covina, CA 91790
24
 
              US
25
 
 
26
 
      Tel: +1 626 919 3600
27
 
      Fax: +1 626 919 3614
28
 
 
29
 
      E-Mail: ned.freed@innosoft.com"
30
 
   DESCRIPTION
31
 
     "The MIB module describing Message Transfer Agents (MTAs)"
32
 
   REVISION "200003030000Z"
33
 
   DESCRIPTION
34
 
     "This revision, published in RFC 2789, changes a number of
35
 
      DisplayStrings to SnmpAdminStrings. Note that this change
36
 
 
37
 
      is not strictly supported by SMIv2.  However, the alternative
38
 
      of deprecating the old objects and defining new objects
39
 
      would have a more adverse impact on backward compatibility
40
 
      and interoperability, given the particular semantics of
41
 
      these objects.  The defining reference for distinguished
42
 
      names has also been updated from RFC 1779 to RFC 2253."
43
 
   REVISION "199905120000Z"
44
 
   DESCRIPTION
45
 
     "This revision fixes a number of technical problems found in
46
 
      previous versions: The conformance groups for different
47
 
      versions of this MIB have been corrected, the recommendation
48
 
      that an empty string be returned if the last operation was
49
 
      successful has been removed from
50
 
      mtaGroupInboundRejectionReason and
51
 
      mtaGroupOutboundConnectFailureReason as it conflicts
52
 
      with the stated purpose of these variables, and the
53
 
      required mtaStatusCode entry has been added to
54
 
      MtaGroupErrorEntry.  It should be noted that this last
55
 
      change in no way affects the bits on the wire."
56
 
   REVISION "199708170000Z"
57
 
   DESCRIPTION
58
 
     "This revision, published in RFC 2249, adds the
59
 
      mtaGroupDescription and mtaGroupURL fields, conversion
60
 
      operation counters, a group hierarchy description mechanism,
61
 
      counters for specific errors, oldest message IDs, per-MTA
62
 
      and per-group loop counters, and a new table for tracking
63
 
      any errors an MTA encounters."
64
 
   REVISION "199311280000Z"
65
 
   DESCRIPTION
66
 
     "The original version of this MIB was published in RFC 1566"
67
 
   ::= {mib-2 28}
68
 
 
69
 
mtaTable OBJECT-TYPE
70
 
   SYNTAX SEQUENCE OF MtaEntry
71
 
   MAX-ACCESS not-accessible
72
 
   STATUS current
73
 
   DESCRIPTION
74
 
     "The table holding information specific to an MTA."
75
 
   ::= {mta 1}
76
 
 
77
 
mtaEntry OBJECT-TYPE
78
 
   SYNTAX MtaEntry
79
 
   MAX-ACCESS not-accessible
80
 
   STATUS current
81
 
   DESCRIPTION
82
 
     "The entry associated with each MTA."
83
 
   INDEX {applIndex}
84
 
   ::= {mtaTable 1}
85
 
 
86
 
MtaEntry ::= SEQUENCE {
87
 
   mtaReceivedMessages
88
 
     Counter32,
89
 
   mtaStoredMessages
90
 
     Gauge32,
91
 
   mtaTransmittedMessages
92
 
     Counter32,
93
 
   mtaReceivedVolume
94
 
     Counter32,
95
 
   mtaStoredVolume
96
 
     Gauge32,
97
 
   mtaTransmittedVolume
98
 
     Counter32,
99
 
   mtaReceivedRecipients
100
 
     Counter32,
101
 
   mtaStoredRecipients
102
 
     Gauge32,
103
 
   mtaTransmittedRecipients
104
 
     Counter32,
105
 
   mtaSuccessfulConvertedMessages
106
 
     Counter32,
107
 
   mtaFailedConvertedMessages
108
 
     Counter32,
109
 
   mtaLoopsDetected
110
 
     Counter32
111
 
}
112
 
 
113
 
mtaReceivedMessages OBJECT-TYPE
114
 
   SYNTAX Counter32
115
 
   MAX-ACCESS read-only
116
 
   STATUS current
117
 
   DESCRIPTION
118
 
     "The number of messages received since MTA initialization.
119
 
      This includes messages transmitted to this MTA from other
120
 
      MTAs as well as messages that have been submitted to the
121
 
      MTA directly by end-users or applications."
122
 
   ::= {mtaEntry 1}
123
 
 
124
 
mtaStoredMessages OBJECT-TYPE
125
 
   SYNTAX Gauge32
126
 
   MAX-ACCESS read-only
127
 
   STATUS current
128
 
   DESCRIPTION
129
 
     "The total number of messages currently stored in the MTA.
130
 
      This includes messages that are awaiting transmission to
131
 
      some other MTA or are waiting for delivery to an end-user
132
 
      or application."
133
 
   ::= {mtaEntry 2}
134
 
 
135
 
mtaTransmittedMessages OBJECT-TYPE
136
 
   SYNTAX Counter32
137
 
   MAX-ACCESS read-only
138
 
   STATUS current
139
 
   DESCRIPTION
140
 
     "The number of messages transmitted since MTA initialization.
141
 
      This includes messages that were transmitted to some other
142
 
      MTA or are waiting for delivery to an end-user or
143
 
      application."
144
 
   ::= {mtaEntry 3}
145
 
 
146
 
mtaReceivedVolume OBJECT-TYPE
147
 
   SYNTAX Counter32
148
 
   UNITS "K-octets"
149
 
   MAX-ACCESS read-only
150
 
   STATUS current
151
 
   DESCRIPTION
152
 
     "The total volume of messages received since MTA
153
 
      initialization, measured in kilo-octets.  This volume should
154
 
      include all transferred data that is logically above the mail
155
 
      transport protocol level.  For example, an SMTP-based MTA
156
 
      should use the number of kilo-octets in the message header
157
 
      and body, while an X.400-based MTA should use the number of
158
 
      kilo-octets of P2 data.  This includes messages transmitted
159
 
      to this MTA from other MTAs as well as messages that have
160
 
      been submitted to the MTA directly by end-users or
161
 
      applications."
162
 
   ::= {mtaEntry 4}
163
 
 
164
 
mtaStoredVolume OBJECT-TYPE
165
 
   SYNTAX Gauge32
166
 
   UNITS "K-octets"
167
 
   MAX-ACCESS read-only
168
 
   STATUS current
169
 
   DESCRIPTION
170
 
     "The total volume of messages currently stored in the MTA,
171
 
      measured in kilo-octets.  This volume should include all
172
 
      stored data that is logically above the mail transport
173
 
      protocol level.  For example, an SMTP-based MTA should
174
 
      use the number of kilo-octets in the message header and
175
 
      body, while an X.400-based MTA would use the number of
176
 
      kilo-octets of P2 data.  This includes messages that are
177
 
      awaiting transmission to some other MTA or are waiting
178
 
      for delivery to an end-user or application."
179
 
   ::= {mtaEntry 5}
180
 
 
181
 
mtaTransmittedVolume OBJECT-TYPE
182
 
   SYNTAX Counter32
183
 
   UNITS "K-octets"
184
 
   MAX-ACCESS read-only
185
 
   STATUS current
186
 
   DESCRIPTION
187
 
     "The total volume of messages transmitted since MTA
188
 
      initialization, measured in kilo-octets.  This volume should
189
 
      include all transferred data that is logically above the mail
190
 
      transport protocol level.  For example, an SMTP-based MTA
191
 
      should use the number of kilo-octets in the message header
192
 
      and body, while an X.400-based MTA should use the number of
193
 
      kilo-octets of P2 data.  This includes messages that were
194
 
      transmitted to some other MTA or are waiting for delivery
195
 
      to an end-user or application."
196
 
   ::= {mtaEntry 6}
197
 
 
198
 
mtaReceivedRecipients OBJECT-TYPE
199
 
   SYNTAX Counter32
200
 
   MAX-ACCESS read-only
201
 
   STATUS current
202
 
   DESCRIPTION
203
 
     "The total number of recipients specified in all messages
204
 
      received since MTA initialization.  Recipients this MTA
205
 
      has no responsibility for, i.e. inactive envelope
206
 
      recipients or ones referred to in message headers,
207
 
      should not be counted even if information about such
208
 
      recipients is available.  This includes messages
209
 
      transmitted to this MTA from other MTAs as well as
210
 
      messages that have been submitted to the MTA directly
211
 
      by end-users or applications."
212
 
   ::= {mtaEntry 7}
213
 
 
214
 
mtaStoredRecipients OBJECT-TYPE
215
 
   SYNTAX Gauge32
216
 
   MAX-ACCESS read-only
217
 
   STATUS current
218
 
   DESCRIPTION
219
 
     "The total number of recipients specified in all messages
220
 
      currently stored in the MTA.  Recipients this MTA has no
221
 
      responsibility for, i.e. inactive envelope recipients or
222
 
      ones referred to in message headers, should not be
223
 
      counted.  This includes messages that are awaiting
224
 
      transmission to some other MTA or are waiting for
225
 
      delivery to an end-user or application."
226
 
   ::= {mtaEntry 8}
227
 
 
228
 
mtaTransmittedRecipients OBJECT-TYPE
229
 
   SYNTAX Counter32
230
 
   MAX-ACCESS read-only
231
 
   STATUS current
232
 
   DESCRIPTION
233
 
     "The total number of recipients specified in all messages
234
 
      transmitted since MTA initialization.  Recipients this
235
 
      MTA had no responsibility for, i.e. inactive envelope
236
 
      recipients or ones referred to in message headers,
237
 
      should not be counted.  This includes messages that were
238
 
      transmitted to some other MTA or are waiting for
239
 
      delivery to an end-user or application."
240
 
   ::= {mtaEntry 9}
241
 
 
242
 
mtaSuccessfulConvertedMessages OBJECT-TYPE
243
 
   SYNTAX Counter32
244
 
   MAX-ACCESS read-only
245
 
   STATUS current
246
 
   DESCRIPTION
247
 
     "The number of messages that have been successfully
248
 
      converted from one form to another since MTA
249
 
      initialization."
250
 
   ::= {mtaEntry 10}
251
 
 
252
 
mtaFailedConvertedMessages OBJECT-TYPE
253
 
   SYNTAX Counter32
254
 
   MAX-ACCESS read-only
255
 
   STATUS current
256
 
   DESCRIPTION
257
 
     "The number of messages for which an unsuccessful
258
 
      attempt was made to convert them from one form to
259
 
      another since MTA initialization."
260
 
   ::= {mtaEntry 11}
261
 
 
262
 
mtaLoopsDetected OBJECT-TYPE
263
 
   SYNTAX Counter32
264
 
   MAX-ACCESS read-only
265
 
   STATUS current
266
 
   DESCRIPTION
267
 
     "A message loop is defined as a situation where the MTA
268
 
      decides that a given message will never be delivered to
269
 
      one or more recipients and instead will continue to
270
 
      loop endlessly through one or more MTAs.  This variable
271
 
      counts the number of times the MTA has detected such a
272
 
      situation since MTA initialization. Note that the
273
 
      mechanism MTAs use to detect loops (e.g., trace field
274
 
      counting, count of references to this MTA in a trace
275
 
      field, examination of DNS or other directory information,
276
 
      etc.), the level at which loops are detected (e.g., per
277
 
      message, per recipient, per directory entry, etc.), and
278
 
      the handling of a loop once it is detected (e.g., looping
279
 
 
280
 
      messages are held, looping messages are bounced or sent
281
 
      to the postmaster, messages that the MTA knows will loop
282
 
      won't be accepted, etc.) vary widely from one MTA to the
283
 
      next and cannot be inferred from this variable."
284
 
   ::= {mtaEntry 12}
285
 
 
286
 
 
287
 
 
288
 
 
289
 
 
290
 
 
291
 
 
292
 
 
293
 
 
294
 
 
295
 
 
296
 
 
297
 
mtaGroupTable OBJECT-TYPE
298
 
    SYNTAX SEQUENCE OF MtaGroupEntry
299
 
    MAX-ACCESS not-accessible
300
 
    STATUS current
301
 
    DESCRIPTION
302
 
      "The table holding information specific to each MTA group."
303
 
    ::= {mta 2}
304
 
 
305
 
mtaGroupEntry OBJECT-TYPE
306
 
    SYNTAX MtaGroupEntry
307
 
    MAX-ACCESS not-accessible
308
 
    STATUS current
309
 
    DESCRIPTION
310
 
      "The entry associated with each MTA group."
311
 
    INDEX {applIndex, mtaGroupIndex}
312
 
    ::= {mtaGroupTable 1}
313
 
 
314
 
MtaGroupEntry ::= SEQUENCE {
315
 
   mtaGroupIndex
316
 
       INTEGER,
317
 
   mtaGroupReceivedMessages
318
 
       Counter32,
319
 
   mtaGroupRejectedMessages
320
 
 
321
 
       Counter32,
322
 
   mtaGroupStoredMessages
323
 
       Gauge32,
324
 
   mtaGroupTransmittedMessages
325
 
       Counter32,
326
 
   mtaGroupReceivedVolume
327
 
       Counter32,
328
 
   mtaGroupStoredVolume
329
 
       Gauge32,
330
 
   mtaGroupTransmittedVolume
331
 
       Counter32,
332
 
   mtaGroupReceivedRecipients
333
 
       Counter32,
334
 
   mtaGroupStoredRecipients
335
 
       Gauge32,
336
 
   mtaGroupTransmittedRecipients
337
 
       Counter32,
338
 
   mtaGroupOldestMessageStored
339
 
       TimeInterval,
340
 
   mtaGroupInboundAssociations
341
 
       Gauge32,
342
 
   mtaGroupOutboundAssociations
343
 
       Gauge32,
344
 
   mtaGroupAccumulatedInboundAssociations
345
 
       Counter32,
346
 
   mtaGroupAccumulatedOutboundAssociations
347
 
       Counter32,
348
 
   mtaGroupLastInboundActivity
349
 
       TimeInterval,
350
 
   mtaGroupLastOutboundActivity
351
 
       TimeInterval,
352
 
   mtaGroupLastOutboundAssociationAttempt
353
 
       TimeInterval,
354
 
   mtaGroupRejectedInboundAssociations
355
 
       Counter32,
356
 
   mtaGroupFailedOutboundAssociations
357
 
       Counter32,
358
 
   mtaGroupInboundRejectionReason
359
 
       SnmpAdminString,
360
 
   mtaGroupOutboundConnectFailureReason
361
 
       SnmpAdminString,
362
 
   mtaGroupScheduledRetry
363
 
       TimeInterval,
364
 
   mtaGroupMailProtocol
365
 
       OBJECT IDENTIFIER,
366
 
   mtaGroupName
367
 
       SnmpAdminString,
368
 
   mtaGroupSuccessfulConvertedMessages
369
 
 
370
 
       Counter32,
371
 
   mtaGroupFailedConvertedMessages
372
 
       Counter32,
373
 
   mtaGroupDescription
374
 
       SnmpAdminString,
375
 
   mtaGroupURL
376
 
       URLString,
377
 
   mtaGroupCreationTime
378
 
       TimeInterval,
379
 
   mtaGroupHierarchy
380
 
       INTEGER,
381
 
   mtaGroupOldestMessageId
382
 
       SnmpAdminString,
383
 
   mtaGroupLoopsDetected
384
 
       Counter32
385
 
}
386
 
 
387
 
mtaGroupIndex OBJECT-TYPE
388
 
   SYNTAX INTEGER (1..2147483647)
389
 
   MAX-ACCESS not-accessible
390
 
   STATUS current
391
 
   DESCRIPTION
392
 
     "The index associated with a group for a given MTA."
393
 
   ::= {mtaGroupEntry 1}
394
 
 
395
 
mtaGroupReceivedMessages OBJECT-TYPE
396
 
   SYNTAX Counter32
397
 
   MAX-ACCESS read-only
398
 
   STATUS current
399
 
   DESCRIPTION
400
 
     "The number of messages received to this group since
401
 
      group creation."
402
 
   ::= {mtaGroupEntry 2}
403
 
 
404
 
mtaGroupRejectedMessages OBJECT-TYPE
405
 
   SYNTAX Counter32
406
 
   MAX-ACCESS read-only
407
 
   STATUS current
408
 
   DESCRIPTION
409
 
     "The number of messages rejected by this group since
410
 
      group creation."
411
 
   ::= {mtaGroupEntry 3}
412
 
 
413
 
mtaGroupStoredMessages OBJECT-TYPE
414
 
   SYNTAX Gauge32
415
 
   MAX-ACCESS read-only
416
 
   STATUS current
417
 
   DESCRIPTION
418
 
     "The total number of messages currently stored in this
419
 
      group's queue."
420
 
   ::= {mtaGroupEntry 4}
421
 
 
422
 
mtaGroupTransmittedMessages OBJECT-TYPE
423
 
   SYNTAX Counter32
424
 
   MAX-ACCESS read-only
425
 
   STATUS current
426
 
   DESCRIPTION
427
 
     "The number of messages transmitted by this group since
428
 
      group creation."
429
 
   ::= {mtaGroupEntry 5}
430
 
 
431
 
mtaGroupReceivedVolume OBJECT-TYPE
432
 
   SYNTAX Counter32
433
 
   UNITS "K-octets"
434
 
   MAX-ACCESS read-only
435
 
   STATUS current
436
 
   DESCRIPTION
437
 
     "The total volume of messages received to this group since
438
 
      group creation, measured in kilo-octets.  This volume
439
 
      should include all transferred data that is logically above
440
 
      the mail transport protocol level.  For example, an
441
 
      SMTP-based MTA should use the number of kilo-octets in the
442
 
      message header and body, while an X.400-based MTA should use
443
 
      the number of kilo-octets of P2 data."
444
 
   ::= {mtaGroupEntry 6}
445
 
 
446
 
mtaGroupStoredVolume OBJECT-TYPE
447
 
   SYNTAX Gauge32
448
 
   UNITS "K-octets"
449
 
   MAX-ACCESS read-only
450
 
   STATUS current
451
 
   DESCRIPTION
452
 
     "The total volume of messages currently stored in this
453
 
      group's queue, measured in kilo-octets.  This volume should
454
 
      include all stored data that is logically above the mail
455
 
      transport protocol level.  For example, an SMTP-based
456
 
      MTA should use the number of kilo-octets in the message
457
 
      header and body, while an X.400-based MTA would use the
458
 
      number of kilo-octets of P2 data."
459
 
   ::= {mtaGroupEntry 7}
460
 
 
461
 
mtaGroupTransmittedVolume OBJECT-TYPE
462
 
   SYNTAX Counter32
463
 
   UNITS "K-octets"
464
 
   MAX-ACCESS read-only
465
 
   STATUS current
466
 
   DESCRIPTION
467
 
     "The total volume of messages transmitted by this group
468
 
      since group creation, measured in kilo-octets.  This
469
 
      volume should include all transferred data that is logically
470
 
      above the mail transport protocol level.  For example, an
471
 
      SMTP-based MTA should use the number of kilo-octets in the
472
 
      message header and body, while an X.400-based MTA should use
473
 
      the number of kilo-octets of P2 data."
474
 
   ::= {mtaGroupEntry 8}
475
 
 
476
 
mtaGroupReceivedRecipients OBJECT-TYPE
477
 
   SYNTAX Counter32
478
 
   MAX-ACCESS read-only
479
 
   STATUS current
480
 
   DESCRIPTION
481
 
     "The total number of recipients specified in all messages
482
 
      received to this group since group creation.
483
 
      Recipients this MTA has no responsibility for should not
484
 
      be counted."
485
 
   ::= {mtaGroupEntry 9}
486
 
 
487
 
mtaGroupStoredRecipients OBJECT-TYPE
488
 
   SYNTAX Gauge32
489
 
   MAX-ACCESS read-only
490
 
   STATUS current
491
 
   DESCRIPTION
492
 
     "The total number of recipients specified in all messages
493
 
      currently stored in this group's queue.  Recipients this
494
 
      MTA has no responsibility for should not be counted."
495
 
   ::= {mtaGroupEntry 10}
496
 
 
497
 
mtaGroupTransmittedRecipients OBJECT-TYPE
498
 
   SYNTAX Counter32
499
 
   MAX-ACCESS read-only
500
 
   STATUS current
501
 
   DESCRIPTION
502
 
     "The total number of recipients specified in all messages
503
 
      transmitted by this group since group creation.
504
 
      Recipients this MTA had no responsibility for should not
505
 
      be counted."
506
 
   ::= {mtaGroupEntry 11}
507
 
 
508
 
mtaGroupOldestMessageStored OBJECT-TYPE
509
 
   SYNTAX TimeInterval
510
 
   MAX-ACCESS read-only
511
 
   STATUS current
512
 
   DESCRIPTION
513
 
     "Time since the oldest message in this group's queue was
514
 
 
515
 
      placed in the queue."
516
 
   ::= {mtaGroupEntry 12}
517
 
 
518
 
mtaGroupInboundAssociations OBJECT-TYPE
519
 
   SYNTAX Gauge32
520
 
   MAX-ACCESS read-only
521
 
   STATUS current
522
 
   DESCRIPTION
523
 
     "The number of current associations to the group, where the
524
 
      group is the responder."
525
 
   ::= {mtaGroupEntry 13}
526
 
 
527
 
mtaGroupOutboundAssociations OBJECT-TYPE
528
 
   SYNTAX Gauge32
529
 
   MAX-ACCESS read-only
530
 
   STATUS current
531
 
   DESCRIPTION
532
 
     "The number of current associations to the group, where the
533
 
     group is the initiator."
534
 
   ::= {mtaGroupEntry 14}
535
 
 
536
 
mtaGroupAccumulatedInboundAssociations OBJECT-TYPE
537
 
   SYNTAX Counter32
538
 
   MAX-ACCESS read-only
539
 
   STATUS current
540
 
   DESCRIPTION
541
 
     "The total number of associations to the group since
542
 
     group creation, where the MTA was the responder."
543
 
   ::= {mtaGroupEntry 15}
544
 
 
545
 
mtaGroupAccumulatedOutboundAssociations OBJECT-TYPE
546
 
   SYNTAX Counter32
547
 
   MAX-ACCESS read-only
548
 
   STATUS current
549
 
   DESCRIPTION
550
 
     "The total number of associations from the group since
551
 
      group creation, where the MTA was the initiator."
552
 
   ::= {mtaGroupEntry 16}
553
 
 
554
 
mtaGroupLastInboundActivity OBJECT-TYPE
555
 
   SYNTAX TimeInterval
556
 
   MAX-ACCESS read-only
557
 
   STATUS current
558
 
   DESCRIPTION
559
 
     "Time since the last time that this group had an active
560
 
     inbound association for purposes of message reception."
561
 
   ::= {mtaGroupEntry 17}
562
 
 
563
 
mtaGroupLastOutboundActivity OBJECT-TYPE
564
 
   SYNTAX TimeInterval
565
 
   MAX-ACCESS read-only
566
 
   STATUS current
567
 
   DESCRIPTION
568
 
     "Time since the last time that this group had a
569
 
      successful outbound association for purposes of
570
 
      message delivery."
571
 
   ::= {mtaGroupEntry 18}
572
 
 
573
 
mtaGroupLastOutboundAssociationAttempt OBJECT-TYPE
574
 
   SYNTAX TimeInterval
575
 
   MAX-ACCESS read-only
576
 
   STATUS current
577
 
   DESCRIPTION
578
 
     "Time since the last time that this group attempted
579
 
      to make an outbound association for purposes of
580
 
      message delivery."
581
 
   ::= {mtaGroupEntry 34}
582
 
 
583
 
mtaGroupRejectedInboundAssociations OBJECT-TYPE
584
 
   SYNTAX Counter32
585
 
   MAX-ACCESS read-only
586
 
   STATUS current
587
 
   DESCRIPTION
588
 
     "The total number of inbound associations the group has
589
 
     rejected, since group creation.  Rejected associations
590
 
     are not counted in the accumulated association totals."
591
 
   ::= {mtaGroupEntry 19}
592
 
 
593
 
mtaGroupFailedOutboundAssociations OBJECT-TYPE
594
 
   SYNTAX Counter32
595
 
   MAX-ACCESS read-only
596
 
   STATUS current
597
 
   DESCRIPTION
598
 
     "The total number associations where the group was the
599
 
     initiator and association establishment has failed,
600
 
     since group creation.  Failed associations are
601
 
     not counted in the accumulated association totals."
602
 
   ::= {mtaGroupEntry 20}
603
 
 
604
 
mtaGroupInboundRejectionReason OBJECT-TYPE
605
 
   SYNTAX SnmpAdminString
606
 
   MAX-ACCESS read-only
607
 
   STATUS current
608
 
   DESCRIPTION
609
 
     "The failure reason, if any, for the last association this
610
 
     group refused to respond to. If no association attempt
611
 
 
612
 
     has been made since the MTA was initialized the value
613
 
     should be 'never'."
614
 
   ::= {mtaGroupEntry 21}
615
 
 
616
 
mtaGroupOutboundConnectFailureReason OBJECT-TYPE
617
 
   SYNTAX SnmpAdminString
618
 
   MAX-ACCESS read-only
619
 
   STATUS current
620
 
   DESCRIPTION
621
 
     "The failure reason, if any, for the last association attempt
622
 
     this group initiated. If no association attempt has been
623
 
     made since the MTA was initialized the value should be
624
 
     'never'."
625
 
   ::= {mtaGroupEntry 22}
626
 
 
627
 
mtaGroupScheduledRetry OBJECT-TYPE
628
 
   SYNTAX TimeInterval
629
 
   MAX-ACCESS read-only
630
 
   STATUS current
631
 
   DESCRIPTION
632
 
     "The amount of time until this group is next scheduled to
633
 
      attempt to make an association."
634
 
   ::= {mtaGroupEntry 23}
635
 
 
636
 
mtaGroupMailProtocol OBJECT-TYPE
637
 
   SYNTAX OBJECT IDENTIFIER
638
 
   MAX-ACCESS read-only
639
 
   STATUS current
640
 
   DESCRIPTION
641
 
     "An identification of the protocol being used by this group.
642
 
      For an group employing OSI protocols, this will be the
643
 
      Application Context.    For Internet applications, OID
644
 
      values of the form {applTCPProtoID port} or {applUDPProtoID
645
 
      port} are used for TCP-based and UDP-based protocols,
646
 
      respectively. In either case 'port' corresponds to the
647
 
      primary port number being used by the protocol. The
648
 
      usual IANA procedures may be used to register ports for
649
 
      new protocols. applTCPProtoID and applUDPProtoID are
650
 
      defined in the NETWORK-SERVICES-MIB, RFC 2788."
651
 
   ::= {mtaGroupEntry 24}
652
 
 
653
 
mtaGroupName OBJECT-TYPE
654
 
   SYNTAX SnmpAdminString
655
 
   MAX-ACCESS read-only
656
 
   STATUS current
657
 
   DESCRIPTION
658
 
     "A descriptive name for the group. If this group connects to
659
 
      a single remote MTA this should be the name of that MTA. If
660
 
 
661
 
      this in turn is an Internet MTA this should be the domain
662
 
      name.  For an OSI MTA it should be the string encoded
663
 
      distinguished name of the managed object using the format
664
 
      defined in RFC 2253.  For X.400(1984) MTAs which do not
665
 
      have a Distinguished Name, the RFC 2156 syntax
666
 
      'mta in globalid' used in X400-Received: fields can be
667
 
      used."
668
 
   ::= {mtaGroupEntry 25}
669
 
 
670
 
mtaGroupSuccessfulConvertedMessages OBJECT-TYPE
671
 
   SYNTAX Counter32
672
 
   MAX-ACCESS read-only
673
 
   STATUS current
674
 
   DESCRIPTION
675
 
     "The number of messages that have been successfully
676
 
      converted from one form to another in this group
677
 
      since group creation."
678
 
   ::= {mtaGroupEntry 26}
679
 
 
680
 
mtaGroupFailedConvertedMessages OBJECT-TYPE
681
 
   SYNTAX Counter32
682
 
   MAX-ACCESS read-only
683
 
   STATUS current
684
 
   DESCRIPTION
685
 
     "The number of messages for which an unsuccessful
686
 
      attempt was made to convert them from one form to
687
 
      another in this group since group creation."
688
 
   ::= {mtaGroupEntry 27}
689
 
 
690
 
mtaGroupDescription OBJECT-TYPE
691
 
   SYNTAX SnmpAdminString
692
 
   MAX-ACCESS read-only
693
 
   STATUS current
694
 
   DESCRIPTION
695
 
     "A description of the group's purpose.  This information is
696
 
      intended to identify the group in a status display."
697
 
   ::= {mtaGroupEntry 28}
698
 
 
699
 
mtaGroupURL OBJECT-TYPE
700
 
   SYNTAX URLString
701
 
   MAX-ACCESS read-only
702
 
   STATUS current
703
 
   DESCRIPTION
704
 
     "A URL pointing to a description of the group.  This
705
 
      information is intended to identify and briefly describe
706
 
      the group in a status display."
707
 
   ::= {mtaGroupEntry 29}
708
 
 
709
 
mtaGroupCreationTime OBJECT-TYPE
710
 
   SYNTAX TimeInterval
711
 
   MAX-ACCESS read-only
712
 
   STATUS current
713
 
   DESCRIPTION
714
 
     "Time since this group was first created."
715
 
   ::= {mtaGroupEntry 30}
716
 
 
717
 
mtaGroupHierarchy OBJECT-TYPE
718
 
   SYNTAX INTEGER (-2147483648..2147483647)
719
 
   MAX-ACCESS read-only
720
 
   STATUS current
721
 
   DESCRIPTION
722
 
     "Describes how this group fits into the hierarchy. A
723
 
      positive value is interpreted as an mtaGroupIndex
724
 
      value for some other group whose variables include
725
 
      those of this group (and usually others). A negative
726
 
      value is interpreted as a group collection code: Groups
727
 
      with common negative hierarchy values comprise one
728
 
      particular breakdown of MTA activity as a whole. A
729
 
      zero value means that this MIB implementation doesn't
730
 
      implement hierarchy indicators and thus the overall
731
 
      group hierarchy cannot be determined."
732
 
   ::= {mtaGroupEntry 31}
733
 
 
734
 
mtaGroupOldestMessageId OBJECT-TYPE
735
 
   SYNTAX SnmpAdminString
736
 
   MAX-ACCESS read-only
737
 
   STATUS current
738
 
   DESCRIPTION
739
 
     "Message ID of the oldest message in the group's queue.
740
 
      Whenever possible this should be in the form of an
741
 
      RFC 822 msg-id; X.400 may convert X.400 message
742
 
      identifiers to this form by following the rules laid
743
 
      out in RFC2156."
744
 
   ::= {mtaGroupEntry 32}
745
 
 
746
 
mtaGroupLoopsDetected OBJECT-TYPE
747
 
   SYNTAX Counter32
748
 
   MAX-ACCESS read-only
749
 
   STATUS current
750
 
   DESCRIPTION
751
 
     "A message loop is defined as a situation where the MTA
752
 
      decides that a given message will never be delivered to
753
 
      one or more recipients and instead will continue to
754
 
      loop endlessly through one or more MTAs.  This variable
755
 
      counts the number of times the MTA has detected such a
756
 
      situation in conjunction with something associated with
757
 
 
758
 
      this group since group creation.  Note that the
759
 
      mechanism MTAs use to detect loops (e.g., trace field
760
 
      counting, count of references to this MTA in a trace
761
 
      field, examination of DNS or other directory information,
762
 
      etc.), the level at which loops are detected (e.g., per
763
 
      message, per recipient, per directory entry, etc.), and
764
 
      the handling of a loop once it is detected (e.g., looping
765
 
      messages are held, looping messages are bounced or sent
766
 
      to the postmaster, messages that the MTA knows will loop
767
 
      won't be accepted, etc.) vary widely from one MTA to the
768
 
      next and cannot be inferred from this variable."
769
 
   ::= {mtaGroupEntry 33}
770
 
 
771
 
 
772
 
mtaGroupAssociationTable OBJECT-TYPE
773
 
   SYNTAX SEQUENCE OF MtaGroupAssociationEntry
774
 
   MAX-ACCESS not-accessible
775
 
   STATUS current
776
 
   DESCRIPTION
777
 
     "The table holding information regarding the associations
778
 
      for each MTA group."
779
 
   ::= {mta 3}
780
 
 
781
 
mtaGroupAssociationEntry OBJECT-TYPE
782
 
   SYNTAX MtaGroupAssociationEntry
783
 
   MAX-ACCESS not-accessible
784
 
   STATUS current
785
 
   DESCRIPTION
786
 
     "The entry holding information regarding the associations
787
 
      for each MTA group."
788
 
   INDEX {applIndex, mtaGroupIndex, mtaGroupAssociationIndex}
789
 
   ::= {mtaGroupAssociationTable 1}
790
 
 
791
 
MtaGroupAssociationEntry ::= SEQUENCE {
792
 
   mtaGroupAssociationIndex
793
 
       INTEGER
794
 
}
795
 
 
796
 
mtaGroupAssociationIndex OBJECT-TYPE
797
 
   SYNTAX INTEGER (1..2147483647)
798
 
   MAX-ACCESS read-only
799
 
   STATUS current
800
 
   DESCRIPTION
801
 
     "Reference into association table to allow correlation of
802
 
      this group's active associations with the association table."
803
 
   ::= {mtaGroupAssociationEntry 1}
804
 
 
805
 
 
806
 
mtaGroupErrorTable OBJECT-TYPE
807
 
   SYNTAX SEQUENCE OF MtaGroupErrorEntry
808
 
   MAX-ACCESS not-accessible
809
 
   STATUS current
810
 
   DESCRIPTION
811
 
     "The table holding information regarding accumulated errors
812
 
      for each MTA group."
813
 
   ::= {mta 5}
814
 
 
815
 
mtaGroupErrorEntry OBJECT-TYPE
816
 
   SYNTAX MtaGroupErrorEntry
817
 
   MAX-ACCESS not-accessible
818
 
   STATUS current
819
 
   DESCRIPTION
820
 
     "The entry holding information regarding accumulated
821
 
      errors for each MTA group."
822
 
   INDEX {applIndex, mtaGroupIndex, mtaStatusCode}
823
 
   ::= {mtaGroupErrorTable 1}
824
 
 
825
 
MtaGroupErrorEntry ::= SEQUENCE {
826
 
   mtaStatusCode
827
 
       INTEGER (4000000..5999999),
828
 
   mtaGroupInboundErrorCount
829
 
       Counter32,
830
 
   mtaGroupInternalErrorCount
831
 
       Counter32,
832
 
   mtaGroupOutboundErrorCount
833
 
       Counter32
834
 
}
835
 
 
836
 
mtaGroupInboundErrorCount OBJECT-TYPE
837
 
   SYNTAX Counter32
838
 
   MAX-ACCESS read-only
839
 
   STATUS current
840
 
   DESCRIPTION
841
 
     "Count of the number of errors of a given type that have
842
 
      been accumulated in association with a particular group
843
 
      while processing incoming messages. In the case of SMTP
844
 
 
845
 
      these will typically be errors reporting by an SMTP
846
 
      server to the remote client; in the case of X.400
847
 
      these will typically be errors encountered while
848
 
      processing an incoming message."
849
 
   ::= {mtaGroupErrorEntry 1}
850
 
 
851
 
mtaGroupInternalErrorCount OBJECT-TYPE
852
 
   SYNTAX Counter32
853
 
   MAX-ACCESS read-only
854
 
   STATUS current
855
 
   DESCRIPTION
856
 
     "Count of the number of errors of a given type that have
857
 
      been accumulated in association with a particular group
858
 
      during internal MTA processing."
859
 
   ::= {mtaGroupErrorEntry 2}
860
 
 
861
 
mtaGroupOutboundErrorCount OBJECT-TYPE
862
 
   SYNTAX Counter32
863
 
   MAX-ACCESS read-only
864
 
   STATUS current
865
 
   DESCRIPTION
866
 
     "Count of the number of errors of a given type that have
867
 
      been accumulated in association with a particular group's
868
 
      outbound connection activities. In the case of an SMTP
869
 
      client these will typically be errors reported while
870
 
      attempting to contact or while communicating with the
871
 
      remote SMTP server. In the case of X.400 these will
872
 
      typically be errors encountered while constructing
873
 
      or attempting to deliver an outgoing message."
874
 
   ::= {mtaGroupErrorEntry 3}
875
 
 
876
 
mtaStatusCode OBJECT-TYPE
877
 
   SYNTAX INTEGER (4000000..5999999)
878
 
   MAX-ACCESS not-accessible
879
 
   STATUS current
880
 
   DESCRIPTION
881
 
     "An index capable of representing an Enhanced Mail System
882
 
      Status Code.  Enhanced Mail System Status Codes are
883
 
      defined in RFC 1893.  These codes have the form
884
 
 
885
 
          class.subject.detail
886
 
 
887
 
      Here 'class' is either 2, 4, or 5 and both 'subject' and
888
 
      'detail'  are integers in the range 0..999. Given a status
889
 
      code the corresponding index value is defined to be
890
 
      ((class * 1000) + subject) * 1000 + detail.  Both SMTP
891
 
      error response codes and X.400 reason and diagnostic codes
892
 
      can be mapped into these codes, resulting in a namespace
893
 
 
894
 
      capable of describing most error conditions a mail system
895
 
      encounters in a generic yet detailed way."
896
 
   ::= {mtaGroupErrorEntry 4}
897
 
 
898
 
 
899
 
mtaConformance OBJECT IDENTIFIER ::= {mta 4}
900
 
 
901
 
mtaGroups      OBJECT IDENTIFIER ::= {mtaConformance 1}
902
 
mtaCompliances OBJECT IDENTIFIER ::= {mtaConformance 2}
903
 
 
904
 
 
905
 
mtaCompliance MODULE-COMPLIANCE
906
 
   STATUS current
907
 
   DESCRIPTION
908
 
     "The compliance statement for RFC 1566 implementations
909
 
      which support the Mail Monitoring MIB for basic
910
 
      monitoring of MTAs."
911
 
   MODULE  -- this module
912
 
     MANDATORY-GROUPS {mtaRFC1566Group}
913
 
   ::= {mtaCompliances 1}
914
 
 
915
 
mtaAssocCompliance MODULE-COMPLIANCE
916
 
   STATUS current
917
 
   DESCRIPTION
918
 
     "The compliance statement for RFC 1566 implementations
919
 
      which support the Mail Monitoring MIB for monitoring
920
 
      of MTAs and their associations."
921
 
   MODULE  -- this module
922
 
     MANDATORY-GROUPS {mtaRFC1566Group, mtaRFC1566AssocGroup}
923
 
   ::= {mtaCompliances 2}
924
 
 
925
 
mtaRFC2249Compliance MODULE-COMPLIANCE
926
 
   STATUS current
927
 
   DESCRIPTION
928
 
     "The compliance statement for RFC 2249 implementations
929
 
      which support the Mail Monitoring MIB for basic
930
 
      monitoring of MTAs."
931
 
   MODULE  -- this module
932
 
     MANDATORY-GROUPS {mtaRFC2249Group}
933
 
   ::= {mtaCompliances 5}
934
 
 
935
 
mtaRFC2249AssocCompliance MODULE-COMPLIANCE
936
 
   STATUS current
937
 
   DESCRIPTION
938
 
     "The compliance statement for RFC 2249 implementations
939
 
 
940
 
      which support the Mail Monitoring MIB for monitoring of
941
 
      MTAs and their associations."
942
 
   MODULE  -- this module
943
 
     MANDATORY-GROUPS {mtaRFC2249Group, mtaRFC2249AssocGroup}
944
 
   ::= {mtaCompliances 6}
945
 
 
946
 
mtaRFC2249ErrorCompliance MODULE-COMPLIANCE
947
 
   STATUS current
948
 
   DESCRIPTION
949
 
     "The compliance statement for RFC 2249 implementations
950
 
      which support the Mail Monitoring MIB for monitoring of
951
 
      MTAs and detailed errors."
952
 
   MODULE  -- this module
953
 
     MANDATORY-GROUPS {mtaRFC2249Group, mtaRFC2249ErrorGroup}
954
 
   ::= {mtaCompliances 7}
955
 
 
956
 
mtaRFC2249FullCompliance MODULE-COMPLIANCE
957
 
   STATUS current
958
 
   DESCRIPTION
959
 
     "The compliance statement for RFC 2249 implementations
960
 
      which support the full Mail Monitoring MIB for
961
 
      monitoring of MTAs, associations, and detailed errors."
962
 
   MODULE  -- this module
963
 
     MANDATORY-GROUPS {mtaRFC2249Group, mtaRFC2249AssocGroup,
964
 
                       mtaRFC2249ErrorGroup}
965
 
   ::= {mtaCompliances 8}
966
 
 
967
 
mtaRFC2789Compliance MODULE-COMPLIANCE
968
 
   STATUS current
969
 
   DESCRIPTION
970
 
     "The compliance statement for RFC 2789 implementations
971
 
      which support the Mail Monitoring MIB for basic
972
 
      monitoring of MTAs."
973
 
   MODULE  -- this module
974
 
     MANDATORY-GROUPS {mtaRFC2789Group}
975
 
   ::= {mtaCompliances 9}
976
 
 
977
 
mtaRFC2789AssocCompliance MODULE-COMPLIANCE
978
 
   STATUS current
979
 
   DESCRIPTION
980
 
     "The compliance statement for RFC 2789 implementations
981
 
      which support the Mail Monitoring MIB for monitoring of
982
 
      MTAs and their associations."
983
 
   MODULE  -- this module
984
 
     MANDATORY-GROUPS {mtaRFC2789Group, mtaRFC2789AssocGroup}
985
 
   ::= {mtaCompliances 10}
986
 
 
987
 
mtaRFC2789ErrorCompliance MODULE-COMPLIANCE
988
 
   STATUS current
989
 
   DESCRIPTION
990
 
     "The compliance statement for RFC 2789 implementations
991
 
      which support the Mail Monitoring MIB for monitoring of
992
 
      MTAs and detailed errors."
993
 
   MODULE  -- this module
994
 
     MANDATORY-GROUPS {mtaRFC2789Group, mtaRFC2789ErrorGroup}
995
 
   ::= {mtaCompliances 11}
996
 
 
997
 
mtaRFC2789FullCompliance MODULE-COMPLIANCE
998
 
   STATUS current
999
 
   DESCRIPTION
1000
 
     "The compliance statement for RFC 2789 implementations
1001
 
      which support the full Mail Monitoring MIB for
1002
 
      monitoring of MTAs, associations, and detailed errors."
1003
 
   MODULE  -- this module
1004
 
     MANDATORY-GROUPS {mtaRFC2789Group, mtaRFC2789AssocGroup,
1005
 
                       mtaRFC2789ErrorGroup}
1006
 
   ::= {mtaCompliances 12}
1007
 
 
1008
 
 
1009
 
mtaRFC1566Group OBJECT-GROUP
1010
 
   OBJECTS {
1011
 
     mtaReceivedMessages, mtaStoredMessages,
1012
 
     mtaTransmittedMessages, mtaReceivedVolume, mtaStoredVolume,
1013
 
     mtaTransmittedVolume, mtaReceivedRecipients,
1014
 
     mtaStoredRecipients, mtaTransmittedRecipients,
1015
 
     mtaGroupReceivedMessages, mtaGroupRejectedMessages,
1016
 
     mtaGroupStoredMessages, mtaGroupTransmittedMessages,
1017
 
     mtaGroupReceivedVolume, mtaGroupStoredVolume,
1018
 
     mtaGroupTransmittedVolume, mtaGroupReceivedRecipients,
1019
 
     mtaGroupStoredRecipients, mtaGroupTransmittedRecipients,
1020
 
     mtaGroupOldestMessageStored, mtaGroupInboundAssociations,
1021
 
     mtaGroupOutboundAssociations,
1022
 
     mtaGroupAccumulatedInboundAssociations,
1023
 
     mtaGroupAccumulatedOutboundAssociations,
1024
 
     mtaGroupLastInboundActivity, mtaGroupLastOutboundActivity,
1025
 
     mtaGroupRejectedInboundAssociations,
1026
 
     mtaGroupFailedOutboundAssociations,
1027
 
     mtaGroupInboundRejectionReason,
1028
 
     mtaGroupOutboundConnectFailureReason,
1029
 
     mtaGroupScheduledRetry, mtaGroupMailProtocol, mtaGroupName}
1030
 
   STATUS current
1031
 
   DESCRIPTION
1032
 
     "A collection of objects providing basic monitoring of MTAs.
1033
 
      This is the original set of such objects defined in RFC
1034
 
      1566."
1035
 
   ::= {mtaGroups 10}
1036
 
 
1037
 
mtaRFC1566AssocGroup OBJECT-GROUP
1038
 
   OBJECTS {
1039
 
     mtaGroupAssociationIndex}
1040
 
   STATUS current
1041
 
   DESCRIPTION
1042
 
     "A collection of objects providing monitoring of MTA
1043
 
      associations.  This is the original set of such objects
1044
 
      defined in RFC 1566."
1045
 
   ::= {mtaGroups 11}
1046
 
 
1047
 
mtaRFC2249Group OBJECT-GROUP
1048
 
   OBJECTS {
1049
 
     mtaReceivedMessages, mtaStoredMessages,
1050
 
     mtaTransmittedMessages, mtaReceivedVolume, mtaStoredVolume,
1051
 
     mtaTransmittedVolume, mtaReceivedRecipients,
1052
 
     mtaStoredRecipients, mtaTransmittedRecipients,
1053
 
     mtaSuccessfulConvertedMessages, mtaFailedConvertedMessages,
1054
 
     mtaGroupReceivedMessages, mtaGroupRejectedMessages,
1055
 
     mtaGroupStoredMessages, mtaGroupTransmittedMessages,
1056
 
     mtaGroupReceivedVolume, mtaGroupStoredVolume,
1057
 
     mtaGroupTransmittedVolume, mtaGroupReceivedRecipients,
1058
 
     mtaGroupStoredRecipients, mtaGroupTransmittedRecipients,
1059
 
     mtaGroupOldestMessageStored, mtaGroupInboundAssociations,
1060
 
     mtaGroupOutboundAssociations, mtaLoopsDetected,
1061
 
     mtaGroupAccumulatedInboundAssociations,
1062
 
     mtaGroupAccumulatedOutboundAssociations,
1063
 
     mtaGroupLastInboundActivity, mtaGroupLastOutboundActivity,
1064
 
     mtaGroupLastOutboundAssociationAttempt,
1065
 
     mtaGroupRejectedInboundAssociations,
1066
 
     mtaGroupFailedOutboundAssociations,
1067
 
     mtaGroupInboundRejectionReason,
1068
 
     mtaGroupOutboundConnectFailureReason,
1069
 
     mtaGroupScheduledRetry, mtaGroupMailProtocol, mtaGroupName,
1070
 
     mtaGroupSuccessfulConvertedMessages,
1071
 
     mtaGroupFailedConvertedMessages, mtaGroupDescription,
1072
 
     mtaGroupURL, mtaGroupCreationTime, mtaGroupHierarchy,
1073
 
     mtaGroupOldestMessageId, mtaGroupLoopsDetected}
1074
 
   STATUS current
1075
 
   DESCRIPTION
1076
 
     "A collection of objects providing basic monitoring of MTAs.
1077
 
      This group was originally defined in RFC 2249."
1078
 
   ::= {mtaGroups 4}
1079
 
 
1080
 
mtaRFC2249AssocGroup OBJECT-GROUP
1081
 
   OBJECTS {
1082
 
     mtaGroupAssociationIndex}
1083
 
   STATUS current
1084
 
   DESCRIPTION
1085
 
     "A collection of objects providing monitoring of MTA
1086
 
      associations.  This group was originally defined in RFC
1087
 
      2249."
1088
 
   ::= {mtaGroups 5}
1089
 
 
1090
 
mtaRFC2249ErrorGroup OBJECT-GROUP
1091
 
   OBJECTS {
1092
 
     mtaGroupInboundErrorCount, mtaGroupInternalErrorCount,
1093
 
     mtaGroupOutboundErrorCount}
1094
 
   STATUS current
1095
 
   DESCRIPTION
1096
 
     "A collection of objects providing monitoring of
1097
 
      detailed MTA errors.  This group was originally defined
1098
 
      in RFC 2249."
1099
 
   ::= {mtaGroups 6}
1100
 
 
1101
 
mtaRFC2789Group OBJECT-GROUP
1102
 
   OBJECTS {
1103
 
     mtaReceivedMessages, mtaStoredMessages,
1104
 
     mtaTransmittedMessages, mtaReceivedVolume, mtaStoredVolume,
1105
 
     mtaTransmittedVolume, mtaReceivedRecipients,
1106
 
     mtaStoredRecipients, mtaTransmittedRecipients,
1107
 
     mtaSuccessfulConvertedMessages, mtaFailedConvertedMessages,
1108
 
     mtaGroupReceivedMessages, mtaGroupRejectedMessages,
1109
 
     mtaGroupStoredMessages, mtaGroupTransmittedMessages,
1110
 
     mtaGroupReceivedVolume, mtaGroupStoredVolume,
1111
 
     mtaGroupTransmittedVolume, mtaGroupReceivedRecipients,
1112
 
     mtaGroupStoredRecipients, mtaGroupTransmittedRecipients,
1113
 
     mtaGroupOldestMessageStored, mtaGroupInboundAssociations,
1114
 
     mtaGroupOutboundAssociations, mtaLoopsDetected,
1115
 
     mtaGroupAccumulatedInboundAssociations,
1116
 
     mtaGroupAccumulatedOutboundAssociations,
1117
 
     mtaGroupLastInboundActivity, mtaGroupLastOutboundActivity,
1118
 
     mtaGroupLastOutboundAssociationAttempt,
1119
 
     mtaGroupRejectedInboundAssociations,
1120
 
     mtaGroupFailedOutboundAssociations,
1121
 
     mtaGroupInboundRejectionReason,
1122
 
     mtaGroupOutboundConnectFailureReason,
1123
 
     mtaGroupScheduledRetry, mtaGroupMailProtocol, mtaGroupName,
1124
 
     mtaGroupSuccessfulConvertedMessages,
1125
 
     mtaGroupFailedConvertedMessages, mtaGroupDescription,
1126
 
     mtaGroupURL, mtaGroupCreationTime, mtaGroupHierarchy,
1127
 
     mtaGroupOldestMessageId, mtaGroupLoopsDetected}
1128
 
   STATUS current
1129
 
   DESCRIPTION
1130
 
     "A collection of objects providing basic monitoring of MTAs.
1131
 
 
1132
 
      This is the appropriate group for RFC 2789."
1133
 
   ::= {mtaGroups 7}
1134
 
 
1135
 
mtaRFC2789AssocGroup OBJECT-GROUP
1136
 
   OBJECTS {
1137
 
     mtaGroupAssociationIndex}
1138
 
   STATUS current
1139
 
   DESCRIPTION
1140
 
     "A collection of objects providing monitoring of MTA
1141
 
      associations.  This is the appropriate group for RFC
1142
 
      2789 association monitoring."
1143
 
   ::= {mtaGroups 8}
1144
 
 
1145
 
mtaRFC2789ErrorGroup OBJECT-GROUP
1146
 
   OBJECTS {
1147
 
     mtaGroupInboundErrorCount, mtaGroupInternalErrorCount,
1148
 
     mtaGroupOutboundErrorCount}
1149
 
   STATUS current
1150
 
   DESCRIPTION
1151
 
     "A collection of objects providing monitoring of
1152
 
      detailed MTA errors.  This is the appropriate group
1153
 
      for RFC 2789 error monitoring."
1154
 
   ::= {mtaGroups 9}
1155
 
 
1156
 
END