it is possible for the mail queue to stop permanently

XMLWordPrintable

    • Type: Bug
    • Resolution: Fixed
    • Priority: Medium
    • 2.6 Pro
    • Affects Version/s: 2.4.1
    • Component/s: None
    • 2.04

      in MailQueueImpl, you have something like this:

      if (sending) return;
      sending = true;
      while (items in the q) {
      try

      { send item }

      catch (MailException me)

      { ... }

      }

      sending = false;

      if an unchecked exception is ever thrown while sending a message, the queue
      will never reset "sending", and as such will cease sending mail.

      We are currently seeing JIRA stop sending mail under some circumstances. it seems to be related to sending to invalid addresses, although I haven't been able to reproduce the problem yet. also, I have no reason to think that the bug described above is the cause of our problem. was just something I ran across while looking for the source of our problem.

            Assignee:
            AntonA
            Reporter:
            joe dane
            Votes:
            1 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: