11

How can I view undelivered mails in railo server? Does it have any undelivered mail folder in server admin?

  1. smtp server name and password are provided properly.
  2. And my network connection is also good.

But I cant see the undelivered mail in ralio server side (admin).

Jeremy Halliwell
  • 3,295
  • 1
  • 15
  • 13
cfprabhu
  • 5,267
  • 2
  • 21
  • 30
  • 2
    Dunno why someone anonymously flagged this to close as "too many possible answers". There's only one/two answer(s). If you're gonna flag a question to be closed, at least explain WHY. – Adam Cameron May 26 '14 at 10:21

2 Answers2

12

You should be able to see them in the Web Admin (not the Server Admin) in the "Tasks" section. Took me a while to find that!

These entries seem to represent files in the WEB-INF\railo\remote-client\open dir, although those files are even less human-readable than their equivalents on ColdFusion.

Adam Cameron
  • 29,677
  • 4
  • 37
  • 78
  • One bonus however is that you can see the log of send attempts, how many attempts have been made and the reason for the failure to deliver without having to go digging through another log. – andrewdixon May 26 '14 at 10:46
0

The .tsk files can be opened with LoadObject(). You can get at the subject, body etc. and also see how many times the spooler has tried the send. With a bit of work, these give you more flexibility than the Adobe CF equivalent, IMHO

Ian Finch
  • 36
  • 3