Hi,
I am wondering if there is a tool in OFBiz that lets the admin to check that the sending mail stuff is correctly set up (SMTP, authentication etc.). No webtool for this? Thank you, -Bruno |
Not at this time.
however you can look at the logs. you will get a lot of error messages if it is not set up. Bruno Busco sent the following on 9/22/2008 11:41 PM: > Hi, > I am wondering if there is a tool in OFBiz that lets the admin to check that > the sending mail stuff is correctly set up (SMTP, authentication etc.). > No webtool for this? > > Thank you, > -Bruno > |
Thank you BJ,
however I think a feature that let the admin to send a test mail to a specified address could help. -Bruno 2008/9/23 BJ Freeman <[hidden email]> > Not at this time. > however you can look at the logs. > you will get a lot of error messages if it is not set up. > > > > Bruno Busco sent the following on 9/22/2008 11:41 PM: > > Hi, > > I am wondering if there is a tool in OFBiz that lets the admin to check > that > > the sending mail stuff is correctly set up (SMTP, authentication etc.). > > No webtool for this? > > > > Thank you, > > -Bruno > > > > |
I agree.
thought you were thinking of a more sophisticated monitoring system. :) Bruno Busco sent the following on 9/23/2008 9:55 AM: > Thank you BJ, > however I think a feature that let the admin to send a test mail to a > specified address could help. > -Bruno > > 2008/9/23 BJ Freeman <[hidden email]> > >> Not at this time. >> however you can look at the logs. >> you will get a lot of error messages if it is not set up. >> >> >> >> Bruno Busco sent the following on 9/22/2008 11:41 PM: >>> Hi, >>> I am wondering if there is a tool in OFBiz that lets the admin to check >> that >>> the sending mail stuff is correctly set up (SMTP, authentication etc.). >>> No webtool for this? >>> >>> Thank you, >>> -Bruno >>> >> > |
No,
just a standard "sending mail test" function. -Bruno 2008/9/23 BJ Freeman <[hidden email]> > I agree. > thought you were thinking of a more sophisticated monitoring system. > :) > > Bruno Busco sent the following on 9/23/2008 9:55 AM: > > Thank you BJ, > > however I think a feature that let the admin to send a test mail to a > > specified address could help. > > -Bruno > > > > 2008/9/23 BJ Freeman <[hidden email]> > > > >> Not at this time. > >> however you can look at the logs. > >> you will get a lot of error messages if it is not set up. > >> > >> > >> > >> Bruno Busco sent the following on 9/22/2008 11:41 PM: > >>> Hi, > >>> I am wondering if there is a tool in OFBiz that lets the admin to check > >> that > >>> the sending mail stuff is correctly set up (SMTP, authentication etc.). > >>> No webtool for this? > >>> > >>> Thank you, > >>> -Bruno > >>> > >> > > > > |
how do you propose to let someone know that the email did not go where
it was sent, such as the redirect property is set to default address. Bruno Busco sent the following on 9/23/2008 11:09 AM: > No, > just a standard "sending mail test" function. > -Bruno > > 2008/9/23 BJ Freeman <[hidden email]> > >> I agree. >> thought you were thinking of a more sophisticated monitoring system. >> :) >> >> Bruno Busco sent the following on 9/23/2008 9:55 AM: >>> Thank you BJ, >>> however I think a feature that let the admin to send a test mail to a >>> specified address could help. >>> -Bruno >>> >>> 2008/9/23 BJ Freeman <[hidden email]> >>> >>>> Not at this time. >>>> however you can look at the logs. >>>> you will get a lot of error messages if it is not set up. >>>> >>>> >>>> >>>> Bruno Busco sent the following on 9/22/2008 11:41 PM: >>>>> Hi, >>>>> I am wondering if there is a tool in OFBiz that lets the admin to check >>>> that >>>>> the sending mail stuff is correctly set up (SMTP, authentication etc.). >>>>> No webtool for this? >>>>> >>>>> Thank you, >>>>> -Bruno >>>>> >> > |
What I was thinking to is a screen where an e-mail address can be entered
and a default subject and body message is proposed. The admin can put there its own e-mail address and check its email box. If the message is received it means that OFBiz is able to send messages (SMTP well configured). -Bruno 2008/9/24 BJ Freeman <[hidden email]> > how do you propose to let someone know that the email did not go where > it was sent, such as the redirect property is set to default address. > > Bruno Busco sent the following on 9/23/2008 11:09 AM: > > No, > > just a standard "sending mail test" function. > > -Bruno > > > > 2008/9/23 BJ Freeman <[hidden email]> > > > >> I agree. > >> thought you were thinking of a more sophisticated monitoring system. > >> :) > >> > >> Bruno Busco sent the following on 9/23/2008 9:55 AM: > >>> Thank you BJ, > >>> however I think a feature that let the admin to send a test mail to a > >>> specified address could help. > >>> -Bruno > >>> > >>> 2008/9/23 BJ Freeman <[hidden email]> > >>> > >>>> Not at this time. > >>>> however you can look at the logs. > >>>> you will get a lot of error messages if it is not set up. > >>>> > >>>> > >>>> > >>>> Bruno Busco sent the following on 9/22/2008 11:41 PM: > >>>>> Hi, > >>>>> I am wondering if there is a tool in OFBiz that lets the admin to > check > >>>> that > >>>>> the sending mail stuff is correctly set up (SMTP, authentication > etc.). > >>>>> No webtool for this? > >>>>> > >>>>> Thank you, > >>>>> -Bruno > >>>>> > >> > > > > |
if you use the ofbiz send mail,
https://localhost:8443/webtools/control/availableServices?sel_service_name=sendMail then # -- redirect all mail notifications to this address for testing #mail.notifications.redirectTo= if (UtilValidate.isNotEmpty(redirectAddress)) { String originalRecipients = " [To: " + sendTo + ", Cc: " + sendCc + ", Bcc: " + sendBcc + "]"; subject += originalRecipients; sendTo = redirectAddress; sendCc = null; sendBcc = null; } which means it will be redirected. so everything may be setup and working but someone forgot to remove the redirect or they should be notified that the email really went to the redirect address. also it should return the service information to see if ofbiz thinks it sent it correctly. just my 2 cents. Bruno Busco sent the following on 9/24/2008 9:39 AM: > What I was thinking to is a screen where an e-mail address can be entered > and a default subject and body message is proposed. > The admin can put there its own e-mail address and check its email box. > If the message is received it means that OFBiz is able to send messages > (SMTP well configured). > -Bruno > > 2008/9/24 BJ Freeman <[hidden email]> > >> how do you propose to let someone know that the email did not go where >> it was sent, such as the redirect property is set to default address. >> >> Bruno Busco sent the following on 9/23/2008 11:09 AM: >>> No, >>> just a standard "sending mail test" function. >>> -Bruno >>> >>> 2008/9/23 BJ Freeman <[hidden email]> >>> >>>> I agree. >>>> thought you were thinking of a more sophisticated monitoring system. >>>> :) >>>> >>>> Bruno Busco sent the following on 9/23/2008 9:55 AM: >>>>> Thank you BJ, >>>>> however I think a feature that let the admin to send a test mail to a >>>>> specified address could help. >>>>> -Bruno >>>>> >>>>> 2008/9/23 BJ Freeman <[hidden email]> >>>>> >>>>>> Not at this time. >>>>>> however you can look at the logs. >>>>>> you will get a lot of error messages if it is not set up. >>>>>> >>>>>> >>>>>> >>>>>> Bruno Busco sent the following on 9/22/2008 11:41 PM: >>>>>>> Hi, >>>>>>> I am wondering if there is a tool in OFBiz that lets the admin to >> check >>>>>> that >>>>>>> the sending mail stuff is correctly set up (SMTP, authentication >> etc.). >>>>>>> No webtool for this? >>>>>>> >>>>>>> Thank you, >>>>>>> -Bruno >>>>>>> >> > |
Free forum by Nabble | Edit this page |