Thanks Scott, I'm going to try the system-property, but I would prefer to just 
add a reference to the already configured javax.mail resource like this just to 
have a single place of SMTP configuration:

  <health:PdfReport mail="${healthMailer}">

-- Steffen


On 10/17/14, 6:59 AM, BUSCH Steffen wrote:
In health.xml I am able to specify a mail reference for example

  <health:SendMail mail="${healthMailer}">
    <to>ad...@yourdomain.com<mailto:ad...@yourdomain.com></to>
    <health:OnStop/>
  <health:SendMail>

where ${healthMailer} can be configured in resin.xml like this

  <mail name="healthMailer">
    <smtp-host>mail.yourdomain.com</smtp-host>
    <smtp-port>25</smtp-port>
    <from>re...@yourdomain.com<mailto:re...@yourdomain.com></from>
  </mail>

Setting the system property mail.smtp.host should work.

It looks like we can add the smtp-host/smtp-port into the PdfReport, but it's 
not configurable currently.

-- Scott




==>But in health.xml there is also <health:PdfReport> configured to retrieve a 
PDF as attachment. But how do I refer to my configured the ${healthMailer} 
there? It seems that it is always trying to connect to localhost:25 in the 
logfiles?

  <health:PdfReport>
    <path>${resin.root}/doc/admin/pdf-gen.php</path>
    <report>Restart</report>
    <period>2h</period>
    <mail-to>${email}</mail-to>
    <mail-from>${email_from}</mail-from>
    <health:OnRestart/>
  </health:PdfReport>


-- Steffen




_______________________________________________

resin-interest mailing list

resin-interest@caucho.com<mailto:resin-interest@caucho.com>

http://maillist.caucho.com/mailman/listinfo/resin-interest

_______________________________________________
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest

Reply via email to