Issue Details (XML | Word | Printable)

Key: JAMES-476
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Major Major
Assignee: Stefano Bagnara
Reporter: Bernd Fondermann
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
JAMES Server

NPE in RemoteDelivery

Created: 13/Apr/06 05:44 PM   Updated: 21/Nov/07 08:31 AM
Return to search
Component/s: Remote Delivery
Affects Version/s: 2.3.0
Fix Version/s: 2.3.0

Time Tracking:
Not Specified

File Attachments:
  Size
Text File Licensed for inclusion in ASF works remotedelivery.patch 2006-04-13 05:57 PM Bernd Fondermann 4 kB

Resolution Date: 28/Apr/06 05:55 AM


 Description  « Hide
I get the following exception in RemoteDelivery.getGatewaySMTPHostAddresses():

java.lang.NullPointerException
at org.apache.james.transport.mailets.RemoteDelivery$1.hasNext(RemoteDelivery.java:1331)
at org.apache.james.transport.mailets.RemoteDelivery.deliver(RemoteDelivery.java:453)
at org.apache.james.transport.mailets.RemoteDelivery.run(RemoteDelivery.java:1098)
at java.lang.Thread.run(Thread.java:595)

in hasNext(), the break condition is not complete (missing addresses == null check)

I'm working on a patch.

RemoteDelivery config in question:

         <mailet match="All" class="RemoteDelivery">
            <outgoing> file://var/mail/outgoing/ </outgoing>

            <delayTime> 5 minutes </delayTime>
            <delayTime> 10 minutes </delayTime>
            <delayTime> 45 minutes </delayTime>
            <delayTime> 2 hours </delayTime>
            <delayTime> 3 hours </delayTime>
            <delayTime> 6 hours </delayTime>
            <maxRetries> 25 </maxRetries>

            <deliveryThreads> 1 </deliveryThreads>

            <sendpartial>false</sendpartial>
            
            <bounceProcessor>bounces</bounceProcessor>
            <gateway>localhost</gateway>
            <gatewayPort>2525</gatewayPort>
         </mailet>


 All   Comments   Work Log   Change History   Subversion Commits      Sort Order: Ascending order - Click to sort in descending order
Repository Revision Date User Message
ASF #397667 Thu Apr 27 22:54:22 UTC 2006 bago Fix for NPE in remotedelivery using gateway option and having no recipients in the message (JAMES-476)
Bug report and patch provided by Bernd Foremann
Files Changed
MODIFY /james/server/trunk/src/java/org/apache/james/transport/mailets/RemoteDelivery.java