Email Notifications

View: New views
6 Messages — Rating Filter:   Alert me  

Email Notifications

by jiveforums-ecm :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I have setup email notifications on a forum for modifications.  However, they are not going out.  Is this supposed to work in the latest release?

I am using 5.2.  I have also modified my server/default/deploy/mail-service.xml (filename from memory might be a little off) to point to our email servers.  I also included the mail.smtp.auth=true property.

Is there a way to "test" the email setup.  The only way I found to do this is by making a modification to something.

Second related question, is it possible to monitor an entire workspace for any changes any where in the workspace?

Thanks,
Chris....
--
Posted by "chrishane" at Nuxeo Discussions <http://nuxeo.org/discussions>
View the complete thread: <http://www.nuxeo.org/discussions/thread.jspa?threadID=2921#8556>
_______________________________________________
ECM mailing list
ECM@...
http://lists.nuxeo.com/mailman/listinfo/ecm
To unsubscribe, go to http://lists.nuxeo.com/mailman/options/ecm

Re: Email Notifications

by jiveforums-ecm :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Do you have any error in the log when a mail should be sent ?
(such as: 09:18:05,000 ERROR [NotificationEventListener] Failed to send notification email to 'Administrator@...': javax.mail.MessagingException: Unknown SMTP host: smtp.nosuchhost.nosuchdomain.com )
--
Posted by "arussel" at Nuxeo Discussions <http://nuxeo.org/discussions>
View the complete thread: <http://www.nuxeo.org/discussions/thread.jspa?threadID=2921#8561>
_______________________________________________
ECM mailing list
ECM@...
http://lists.nuxeo.com/mailman/listinfo/ecm
To unsubscribe, go to http://lists.nuxeo.com/mailman/options/ecm

Re: Email Notifications

by jiveforums-ecm :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Wouldn't you know it.  It works now.

I think I know what was happening.  We were using the WebDav original for updates.  However, I didn't realize the WebDav doesn't trigger a lot of the functinality in the system (e.g., versioning).  I guess we can add notifications to that list.

When I update a doc via the drag and drop browser plugin, I get the notifications I expect.

Thanks,
Chris....
--
Posted by "chrishane" at Nuxeo Discussions <http://nuxeo.org/discussions>
View the complete thread: <http://www.nuxeo.org/discussions/thread.jspa?threadID=2921#8565>
_______________________________________________
ECM mailing list
ECM@...
http://lists.nuxeo.com/mailman/listinfo/ecm
To unsubscribe, go to http://lists.nuxeo.com/mailman/options/ecm

Re: Email Notifications

by jiveforums-ecm :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi, what is the reason of this error?
thanks
--
Posted by "faprieto" at Nuxeo Discussions <http://nuxeo.org/discussions>
View the complete thread: <http://www.nuxeo.org/discussions/thread.jspa?threadID=2921#8869>
_______________________________________________
ECM mailing list
ECM@...
http://lists.nuxeo.com/mailman/listinfo/ecm
To unsubscribe, go to http://lists.nuxeo.com/mailman/options/ecm

Re: Email Notifications

by jiveforums-ecm :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

the file:
$JBOSS/server/default/deploy/mail-service.xml is not configured properly
--
Posted by "arussel" at Nuxeo Discussions <http://nuxeo.org/discussions>
View the complete thread: <http://www.nuxeo.org/discussions/thread.jspa?threadID=2921#8881>
_______________________________________________
ECM mailing list
ECM@...
http://lists.nuxeo.com/mailman/listinfo/ecm
To unsubscribe, go to http://lists.nuxeo.com/mailman/options/ecm

Re: Email Notifications

by jiveforums-ecm :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi, sorry the delay, thanks for your answer.
I edited $JBOSS/server/default/deploy/mail-service.xml:

*<?xml version="1.0" encoding="UTF-8"?>
<!-- $Id: mail-service.xml 62350 2007-04-15 16:50:12Z dimitris@... $ -->
<server>

  <!-- ==================================================================== -->
  <!-- Mail Connection Factory                                              -->
  <!-- ==================================================================== -->

  <mbean code="org.jboss.mail.MailService"
         name="jboss:service=Mail">
    <attribute name="JNDIName">java:/Mail</attribute>
    <attribute name="User">faprieto@...</attribute>
    <attribute name="Password">somepass</attribute>
    <attribute name="Configuration">
      <!-- A test configuration -->
      <configuration>
        <!-- Change to your mail server prototocol -->
        <property name="mail.transport.protocol" value="smtp"/>

        <!-- Change to the user who will receive mail  -->
        <property name="mail.user" value="faprieto@..."/>

        <!-- Change to the SMTP gateway server -->
        <property name="mail.smtp.host" value="smtp.mydomain.com"/>
       
        <!-- The mail server port -->
        <property name="mail.smtp.port" value="25"/>
       
        <!-- Change to the address mail will be from  -->
        <property name="mail.from" value="faprieto@..."/>

        <!-- Enable debugging output from the javamail classes -->
        <property name="mail.debug" value="false"/>
      </configuration>
    </attribute>
    <depends>jboss:service=Naming</depends>
  </mbean>

</server>*

and i received the following error:

*com.sun.mail.smtp.SMTPAddressFailedException: 554 5.7.1 <faprieto@...>: Sender address rejected: Access denied*

the server required secure connection with TLS, i think that is the cause of this error. Is that right?
Any idea?
--
Posted by "faprieto" at Nuxeo Discussions <http://nuxeo.org/discussions>
View the complete thread: <http://www.nuxeo.org/discussions/thread.jspa?threadID=2921#9044>
_______________________________________________
ECM mailing list
ECM@...
http://lists.nuxeo.com/mailman/listinfo/ecm
To unsubscribe, go to http://lists.nuxeo.com/mailman/options/ecm