Uploaded image for project: 'James Server'
  1. James Server
  2. JAMES-942

James FetchMail instances are sharing the same Properties class instance preventing correct setting of mail.pop3.port etc

Agile BoardAttach filesAttach ScreenshotVotersWatch issueWatchersCreate sub-taskLinkCloneUpdate Comment AuthorReplace String in CommentUpdate Comment VisibilityDelete Comments
    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 2.3.2
    • 2.4, 3.0-M1, 3.0.0
    • Deployment Modules
    • None
    • Bug is in FetchMail.java

    Description

      James-fetchmail.xml permits you to set the mail API properies via the JavaMailProperties element e.g:

      <javaMailProperties>
      <property name="mail.pop3.connectiontimeout" value="0"/>
      <property name="mail.pop3.timeout" value="0"/>
      <property name="mail.pop3.port" value="2000"/>
      </javaMailProperties>

      However, the FetchMail class passes a reference to the Systems.getProperties() class into the Service that interacts with the MailAPI, this means that multiple instances of the FetchMail class are actually sharing the same Properties class and prevents different values from being set, e.g. the mail.pop3.port.

      A simple fix for this bug is to change FetchMail.computeSession() so a new instance of a PropertiesClass is passed in to create the session instance, using the System Properties as a default, as per the example below:

      /**

      • Answers a new Session.
      • @return Session
        */
        protected Session computeSession() { // Make separate properties instance so the // fetchmail.xml <javaMailProperties> can override the // property values without interfering with other fetchmail instances return Session.getInstance( new Properties( System.getProperties()) ); }

      Attachments

        Activity

          This comment will be Viewable by All Users Viewable by All Users
          Cancel

          People

            norman Norman Maurer
            ralph@arising.com.au Ralph Holland
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Slack

                Issue deployment