Mail Transport Monitor Exception from mailer: null error

Description

I'm running ONMS 1.5.90 on Red Hat 5 and trying to get the Mail Transport Monitor to work in my environment. My first goal is to initiate the test sending mail message to go from my ONMS server to my separate email server (which properly sends out all my notifications via email and text messaging) to it's destination of a gmail account.

Following the documentation from the ONMS website, I've edited the javamail-configuration.properties, capsd-configuration, and poller-configuration.xml files. And added a modified the mail-transport-test.xml file I located in /opt/opennms/examples

Upon restart of ONMS, within the WebUI, I do see the new "MAIL" service added to only the separate email server (not every server that we have SMTP port 25 running), but it show's the "MAIL" service as down with the reason code: Exception from mailer: null

I do see in the poller.log file

2008-04-18 13:41:18,014 ERROR [PollerScheduler-30 Pool-fiber29] Poller: poll, Exception from mailer:

java.lang.NullPointerException

at org.opennms.netmgt.poller.monitors.MailTransportParameters.getReadTestHost(MailTransportParameters.java:253)

at org.opennms.netmgt.poller.monitors.MailTransportMonitor.poll(MailTransportMonitor.java:82)

at org.opennms.netmgt.poller.pollables.LatencyStoringServiceMonitorAdaptor.poll(LatencyStoringServiceMonitorAdaptor.java:90)

at org.opennms.netmgt.poller.pollables.PollableServiceConfig.poll(PollableServiceConfig.java:100)

at org.opennms.netmgt.poller.pollables.PollableService.poll(PollableService.java:143)

at org.opennms.netmgt.poller.pollables.PollableElement.poll(PollableElement.java:158)

at org.opennms.netmgt.poller.pollables.PollableContainer$4.run(PollableContainer.java:201)

at org.opennms.netmgt.poller.pollables.PollableElement.withTreeLock(PollableElement.java:143)

at org.opennms.netmgt.poller.pollables.PollableElement.withTreeLock(PollableElement.java:135)

at org.opennms.netmgt.poller.pollables.PollableContainer.poll(PollableContainer.java:208)

at org.opennms.netmgt.poller.pollables.PollableInterface.poll(PollableInterface.java:142)

at org.opennms.netmgt.poller.pollables.PollableContainer$4.run(PollableContainer.java:201)

at org.opennms.netmgt.poller.pollables.PollableElement.withTreeLock(PollableElement.java:143)

at org.opennms.netmgt.poller.pollables.PollableElement.withTreeLock(PollableElement.java:135)

at org.opennms.netmgt.poller.pollables.PollableContainer.poll(PollableContainer.java:208)

at org.opennms.netmgt.poller.pollables.PollableNode$3.run(PollableNode.java:230)

at org.opennms.netmgt.poller.pollables.PollableElement.withTreeLock(PollableElement.java:143)

at org.opennms.netmgt.poller.pollables.PollableElement.withTreeLock(PollableElement.java:135)

at org.opennms.netmgt.poller.pollables.PollableNode.doPoll(PollableNode.java:233)

at org.opennms.netmgt.poller.pollables.PollableElement.doPoll(PollableElement.java:114)

at org.opennms.netmgt.poller.pollables.PollableService.doPoll(PollableService.java:168)

at org.opennms.netmgt.poller.pollables.PollableService$PollRunner.run(PollableService.java:60)

at org.opennms.netmgt.poller.pollables.PollableElement.withTreeLock(PollableElement.java:143)

at org.opennms.netmgt.poller.pollables.PollableService.doRun(PollableService.java:289)

at org.opennms.netmgt.poller.pollables.PollableService.run(PollableService.java:275)

at org.opennms.netmgt.scheduler.Schedule.run(Schedule.java:136)

at org.opennms.netmgt.scheduler.Schedule$ScheduleEntry.run(Schedule.java:82)

at org.opennms.netmgt.scheduler.LegacyScheduler$1.run(LegacyScheduler.java:292)

at org.opennms.core.concurrent.RunnableConsumerThreadPool$FiberThreadImpl.run(RunnableConsumerThreadPool.java:422)

at java.lang.Thread.run(Thread.java:619)

2008-04-18 13:41:18,015 DEBUG [PollerScheduler-30 Pool-fiber29] PollableServiceConfig: Finish polling 103:192.133.83.149:MAIL using pkg GoogleMailTest result =Down

Below are my javamail-configuration.properties, capsd-configuration, mail-transport-test.xml, and poller-configuration.xml files edits or additions.

The existing javamail-configuration.properties.xml file with sending out notifications to our external email server. This works fine for sending out notifications:

################################################################################

  1. This file is the configuration for the the JavaMailer class. It is used to

  2. specify the details of the JavaMailer system properties
    ################################################################################
    #

  3. Properties are defined but commented out indicating the default values.
    #


#

  1. This property defines system sender account.
    #

  2. The default setting is root@[127.0.0.1]
    org.opennms.core.utils.fromAddress=opcenter@opennmsacpt.holycross.edu


#

  1. These properties define the SMTP Host.
    #

  2. jay changed / uncommented the following lines on 120907
    org.opennms.core.utils.mailHost=192.xxx.xx.xxx
    org.opennms.core.utils.mailer=smtpsend
    org.opennms.core.utils.transport=smtp
    org.opennms.core.utils.debug=true
    org.opennms.core.utils.smtpport=25
    org.opennms.core.utils.smtpssl.enable=false
    org.opennms.core.utils.quitwait=true
    #

  3. This property controls the use of the JMTA, the default is true
    #org.opennms.core.utils.useJMTA=true


#

  1. These properties define the Mail authentication.
    #
    #org.opennms.core.utils.authenticate=false
    #org.opennms.core.utils.authenticateUser="opennms"
    #org.opennms.core.utils.authenticatePassword="opennms"
    #org.opennms.core.utils.starttls.enable=false


#

  1. These properties configure message content
    #
    #org.opennms.core.utils.messageContentType=text/plain
    #org.opennms.core.utils.charset=us-ascii

added to capsd-configuration.xml

<!-- Quick and dirty to set up the MAIL service on an interface -->
<protocol-plugin protocol="MAIL" class-name="org.opennms.netmgt.capsd.plugins.SmtpPlugin" scan="off" user-defined="false">
<property key="port" value="25" />
<property key="timeout" value="3000" />
<property key="retry" value="2" />
<protocol-configuration scan="on" user-defined="false">
<specific>192.xxx.xx.xxx</specific>
</protocol-configuration>
</protocol-plugin>

added the mail-transport-test.xml file

<mail-test>
<sendmail-test attempt-interval="3000" debug="true" use-authentication="false" use-jmta="false">

<!-- These 2 properties are passed directly to the javamailer class. The will
be overridden if they are the same properties that are derived based on the
other configuration elements. Mainly here for convenience allowing properties
to be set that don't get set by the configuration. -->
<javamail-property name="mail.smtp.userset" value="false"/>
<javamail-property name="mail.smtp.ehlo" value="true"/>

<!-- Connect to local MTA and send... no auth required but the configuration
requires auth be configured. Disable with use-authentication attribute above. -->
<sendmail-host host="192.xxx.xx.xxx" port="25"/>
<sendmail-protocol char-set="us-ascii"
mailer="smtpsend"
message-content-type="text/plain"
message-encoding="7-bit"
quit-wait="true"
ssl-enable="false"
start-tls="false"
transport="smtp" />
<sendmail-message to="anexternal@gmail.com"
from="opcenter@holycross.edu"
subject="OpenNMS Test Message "
body="This is an OpenNMS test message." />
<user-auth user-name="opennms" password="opennms" />
</sendmail-test>

</mail-test>
</mail-transport-test>

and lastly, the poller-configuration.xml file addition

<package name="GoogleMailTest">
<filter>IPADDR != '0.0.0.0'</filter>
<specific>192.xxx.xx.xxx</specific>
<rrd step = "300">
<rra>RRA:AVERAGE:0.5:1:2016</rra>
<rra>RRA:AVERAGE:0.5:12:4464</rra>
<rra>RRA:MIN:0.5:12:4464</rra>
<rra>RRA:MAX:0.5:12:4464</rra>
</rrd>
<service name="MAIL" interval="30000" user-defined="false" status="on">
<parameter key="mail-transport-test">
<mail-transport-test>
<mail-test>
<sendmail-test attempt-interval="3000" debug="true" use-authentication="false" use-jmta="false">
<!-- These 2 properties are passed directly to the javamailer class. The will
be overridden if they are the same properties that are derived based on the
other configuration elements. Mainly here for convenience allowing properties
to be set that don't get set by the configuration. -->
<javamail-property name="mail.smtp.userset" value="false" />
<javamail-property name="mail.smtp.ehlo" value="true" />

<!-- Connect to local MTA and send... no auth required but the configuration
requires auth be configured. Disable with use-authentication attribute above. -->
<sendmail-host host="192.xxx.xx.xxx" port="25" />
<sendmail-protocol char-set="us-ascii" mailer="smtpsend" message-content-type="text/plain" message-encoding="7-bit"
quit-wait="true" ssl-enable="false" start-tls="false" transport="smtp" />
<sendmail-message to="anexternal@gmail.com" from="opcenter@opennmsacpt.holycross.edu" subject="OpenNMS Test Message "
body="This is an OpenNMS test message." />
<user-auth user-name="opennms" password="opennms" />
</sendmail-test>

</mail-test>
</mail-transport-test>
</parameter>
</service>

<downtime interval="15000" begin="0" end="300000"/> <!-- 15s, 0, 5m -->
<downtime interval="30000" begin="300000" end="43200000"/> <!-- 30s, 5m, 12h -->
<downtime interval="300000" begin="43200000" end="432000000"/> <!-- 5m, 12h, 5d -->
<downtime begin="432000000" delete="true"/> <!-- anything after 5 days delete -->
</package>

Environment

Operating System: Linux Platform: PC

Acceptance / Success Criteria

None

Lucidchart Diagrams

Activity

Show:

David Hustace July 16, 2009 at 9:15 AM

This was fixed some time back, can't find the bug.

Fixed

Details

Assignee

Reporter

Fix versions

Affects versions

Priority

PagerDuty

Created April 21, 2008 at 10:57 AM
Updated January 27, 2017 at 4:25 PM
Resolved September 6, 2010 at 4:44 PM

Flag notifications