Advertisement
Guest User

disable nuxeo notification

a guest
Nov 8th, 2013
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.75 KB | None | 0 0
  1. <component name="com.cycompany.ecm.custom.notifications.emails">
  2. <require>org.nuxeo.ecm.platform.notification.service.NotificationContrib</require>
  3.  
  4.   <extension target="org.nuxeo.ecm.platform.ec.notification.service.NotificationService" point="notifications">
  5.  
  6.     <notification autoSubscribed="false" availableIn="Workspace" channel="email" enabled="false" label="label.nuxeo.notifications.subscriptions.updated" name="Subscriptions updated" subject="Nouvel abonnement" template="subscriptionsUpdated">
  7.  
  8.       <event name="subscriptionAssigned"/>
  9.  
  10.     </notification>
  11.  
  12.     <notification autoSubscribed="false" availableIn="Workspace" channel="email" enabled="false" label="label.nuxeo.notifications.modif" name="Modification" subject="${docTitle} a été modifié par ${htmlEscape(sender.firstName)} ${htmlEscape(sender.lastName)} " template="modif">
  13.  
  14.       <event name="documentModified"/>
  15.  
  16.     </notification>
  17.  
  18.     <notification autoSubscribed="false" availableIn="Workspace" channel="email" enabled="false" label="label.nuxeo.notifications.create" name="Creation" subject="${docTitle} a été créé par ${htmlEscape(sender.firstName)} ${htmlEscape(sender.lastName)} " template="modif">
  19.  
  20.       <event name="documentCreated"/>
  21.  
  22.     </notification>
  23.  
  24.     <notification autoSubscribed="false" availableIn="Section" channel="email" enabled="false" label="label.nuxeo.notifications.publication" name="Publication" subject="Document publié" template="publish">
  25.  
  26.       <event name="documentPublicationApproved"/>
  27.  
  28.       <event name="documentPublicationRejected"/>
  29.  
  30.       <event name="documentPublished"/>
  31.  
  32.     </notification>
  33.  
  34.     <notification autoSubscribed="false" availableIn="Section" channel="email" enabled="false" label="label.nuxeo.notifications.publication" name="PublicationOnClient" subject="Document publié" template="publish">
  35.  
  36.       <event name="documentPublicationApproved"/>
  37.  
  38.       <event name="documentPublished"/>
  39.  
  40.     </notification>
  41.  
  42.     <notification autoSubscribed="false" availableIn="Workspace" channel="email" enabled="false" label="label.nuxeo.notifications.workflow" name="Workflow Change" subject="Événement sur un document" template="workflow">
  43.  
  44.       <event name="workflowNewProcessStarted"/>
  45.  
  46.       <event name="workflowProcessEnded"/>
  47.  
  48.       <event name="workflowProcessCanceled"/>
  49.  
  50.       <event name="workflowAbandoned"/>
  51.  
  52.       <event name="workflowTaskCompleted"/>
  53.  
  54.       <event name="workflowTaskRejected"/>
  55.  
  56.       <event name="workflowTaskAssigned"/>
  57.  
  58.     </notification>
  59.  
  60.     <notification autoSubscribed="false" availableIn="Workspace" channel="email" enabled="false" label="label.nuxeo.notifications.appReviewStarted" name="Approbation review started" subject="Processus d'approbation démarré pour ${docTitle}" template="aprobationWorkflowStarted">
  61.  
  62.       <event name="workflowNewProcessStarted"/>
  63.  
  64.     </notification>
  65.  
  66.     <notification autoSubscribed="false" availableIn="Workspace" channel="email" enabled="false" label="label.nuxeo.notifications.appReviewStarted" name="Task assigned" subject="Tâche assignée pour le document ${docTitle}" template="workflowTaskAssigned">
  67.  
  68.       <event name="workflowTaskAssigned"/>
  69.  
  70.     </notification>
  71.  
  72.     <notification autoSubscribed="true" availableIn="all" channel="email" enabled="false" label="label.nuxeo.notifications.email.document" name="Email document" subject="${subject}" template="emailDocument">
  73.  
  74.       <event name="emailDocumentSend"/>
  75.  
  76.     </notification>
  77.  
  78.     <notification autoSubscribed="false" availableIn="Workspace" channel="email" enabled="false" label="notifications.name.Comments" name="CommentPublication" subject="Comment published" template="comment">
  79.  
  80.       <event name="commentPublished"/>
  81.  
  82.     </notification>
  83.  
  84.   </extension>
  85.  
  86.   </component>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement