Wesley Forti a écrit : > Ok, let me try to be more clear this time. > > I will use Nuxeo to control lifecycle of my documents. > > I am to be notified when a document is created, updated, released and > so one, so i need to make some smtp configurations. When something happends to a document inside the Nuxeo Repository a Core Event is fired. This event carries all needed information (who, when, on what document ...). You can listen to these synchronous events at the repository level.
Most core events are forwarded to a JMS Topic. You can listen asynchronously to theses events in a Message Driven Bean and send your mails. Inside std Nuxeo 5 distribution there are at least 2 services that uses MDB to react to document events - the Notification service Send notifications to subsribed users. You can configure this services to your needs (events, mail templates ...) http://svn.nuxeo.org/nxpointdoc/org.nuxeo.ecm.platform.ec.notification.service.NotificationService.html - the Audit service Logs all events in a DB (can be your MySQL) You can configure what is logged. http://svn.nuxeo.org/nxpointdoc/org.nuxeo.ecm.platform.audit.service.NXAuditEventsService.html > I want all my data to be persisted in Mysql, so I need to make some > RDBMS configurations. http://doc.nuxeo.org/current/reference/html/administration.html#admin-database-configuration If you use the source tree, there is a tool for generating automatic configuration for PGSQL. http://svn.nuxeo.org/trac/nuxeo/browser/org.nuxeo.ecm.platform/branches/5.1/nuxeo-platform-ear/postgresql-setup > For user authentication, _I do *not *want to use LDAP . _ OK, NO NEED TO SHOUT:) Ldap module is present by default but not activated. > Can I use Mysql to persist users data, role, access rights and so one? Users and Groupes can be easily configured to be stored in a external Database. In fact they already are in a (embeded) db, just need to configure the datasources to point to your server. http://doc.nuxeo.org/current/reference/html/administration.html#admin-database-configuration > > Mainly all that I need is this. I just need to _manage documents. > _ Sorry, but there are a lot of different ways to manage documents ... > _ > _Is there anything that I should configure or any other functionality > I can provide to users manage document life cycle? It just depends on your needs. You can use the demo-webapp to see a set of standard features, read the user guide or take a look at the screen casts. > > Thank's for all. > > > On Feb 1, 2008 4:04 PM, Stefane Fermigier <[EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>> wrote: > > > On Feb 1, 2008, at 2:26 AM, Wesley Forti wrote: > >> Hello, >> >> I read some documentation about how to set up Nuxeo, especially >> this one http://doc.nuxeo.org/current/reference/html/nuxeo-book.html. >> >> >> I need to use Nuxeo just to control documents from different >> projects. >> >> Besides DB(for storage) and SMTP(for email notifications) what >> else should I configure? See I'd like to use all functionalities >> of Nuxeo( Example:document revision). >> >> if there's something else do be configured, where can I find some >> guideline? > > Lots of things (everything, in some sense) is configurable in the > Nuxeo platform. > > We try to provide a default application that is configured to > satisfy the most common needs, and to showcase as well most of the > features of the platform. > > So maybe you should tell us what your specific needs are, i.e. > what you'd like to be different than the default settings. > > Cheers, > > S. > > -- > Stefane Fermigier, CEO, Nuxeo > Open Source, Java EE based, Enterprise Content Management (ECM) > New! Nuxeo TV on http://nuxeo.blip.tv/ > Web: http://www.nuxeo.com/ - Tel: +33 1 40 33 79 87 > > > > > > -- > Att, > --- > Wesley Forti > ------------------------------------------------------------------------ > > _______________________________________________ > ECM mailing list > [email protected] > http://lists.nuxeo.com/mailman/listinfo/ecm > _______________________________________________ ECM mailing list [email protected] http://lists.nuxeo.com/mailman/listinfo/ecm
