<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Envoyer mail en utilisant TaskListener in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/envoyer-mail-en-utilisant-tasklistener/m-p/42052#M22548</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bonjour, tout le monde.&lt;/P&gt;&lt;P&gt;Je suis debutant en alfresco. J'essaye d'envoyer un mail en utilisant une classe java qui imlpemente TaskListener&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;import org.activiti.engine.delegate.DelegateTask;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;import org.activiti.engine.delegate.TaskListener;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;import org.activiti.engine.impl.cfg.ProcessEngineConfigurationImpl;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;import org.activiti.engine.impl.context.Context;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;import org.alfresco.repo.action.executer.MailActionExecuter;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;import org.alfresco.repo.workflow.activiti.ActivitiConstants;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;import org.alfresco.service.ServiceRegistry;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;import org.alfresco.service.cmr.action.Action;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;import org.alfresco.service.cmr.action.ActionService;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;import org.apache.commons.logging.Log;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;import org.apache.commons.logging.LogFactory;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;public class MailSender implements TaskListener {&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; private static final long serialVersionUID = 1L;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;private static final String FROM_ADDRESS = "alfresco@localhost";&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; private static final String SUBJECT = "Workflow task requires action";&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;SPAN&gt; private static final String RECIP_PROCESS_VARIABLE = "&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:ibenchhida@cni.tn" rel="nofollow noopener noreferrer"&gt;ibenchhida@cni.tn&lt;/A&gt;&lt;SPAN&gt;";&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;EM&gt; private static Log logger = LogFactory.getLog(MailSender.class);&lt;/EM&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;EM&gt; @Override&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; public void notify(DelegateTask task) {&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; logger.debug("Inside ExternalReviewNotification.notify()");&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; logger.debug("Task ID:" + task.getId());&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; logger.debug("Task name:" + task.getName());&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; logger.debug("Task proc ID:" + task.getProcessInstanceId());&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; logger.debug("Task def key:" + task.getTaskDefinitionKey());&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;EM&gt; StringBuffer sb = new StringBuffer();&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; sb.append("You have been assigned to a task named "); &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; sb.append(task.getName());&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; //sb.append(". Take the appropriate action by clicking one of the links below:\r\n\r\n"); &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; //sb.append(getLink(task.getId(), "Approve"));&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; //sb.append(getLink(task.getId(), "Reject"));&lt;/EM&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;EM&gt; logger.debug("Message body:" + sb.toString());&lt;/EM&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;EM&gt; ActionService actionService = getServiceRegistry().getActionService();&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; Action mailAction = actionService.createAction(MailActionExecuter.NAME);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; mailAction.setParameterValue(MailActionExecuter.PARAM_SUBJECT, MailSender.SUBJECT); &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; mailAction.setParameterValue(MailActionExecuter.PARAM_TO, RECIP_PROCESS_VARIABLE);&amp;nbsp;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; mailAction.setParameterValue(MailActionExecuter.PARAM_FROM, MailSender.FROM_ADDRESS);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; mailAction.setParameterValue(MailActionExecuter.PARAM_TEXT, sb.toString());&lt;/EM&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;EM&gt; actionService.executeAction(mailAction, null);&lt;/EM&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;EM&gt; logger.debug("Mail action executed");&lt;/EM&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;EM&gt; return;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; }&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;/*&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; public String getLink(String taskId, String outcome) {&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; StringBuffer sb = new StringBuffer();&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; sb.append("\r\n");&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;SPAN&gt; sb.append("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://migration33.stage.lithium.com/external-link.jspa?url=http%3A%2F%2Flocalhost%3A8181%2Falfresco%2Fservice%2Fsomeco%2Fbpm%2Freview%3Fid%3Dactiviti%24" target="_blank"&gt;http://localhost:8181/alfresco/service/someco/bpm/review?id=activiti$&lt;/A&gt;&lt;SPAN&gt;");&lt;/SPAN&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; sb.append(taskId);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; sb.append("&amp;amp;action=");&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; sb.append(outcome);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; sb.append("&amp;amp;guest=true");&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; sb.append("\r\n\r\n");&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; return sb.toString();&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; }*/&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;/* taken from ActivitiScriptBase.java */&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; protected ServiceRegistry getServiceRegistry() {&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; ProcessEngineConfigurationImpl config = Context.getProcessEngineConfiguration();&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; if (config != null) {&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; // Fetch the registry that is injected in the activiti spring-configuration&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; ServiceRegistry registry = (ServiceRegistry) config.getBeans().get(ActivitiConstants.SERVICE_REGISTRY_BEAN_KEY);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; if (registry == null) {&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; throw new RuntimeException(&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; "Service-registry not present in ProcessEngineConfiguration beans, expected ServiceRegistry with key" + &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; ActivitiConstants.SERVICE_REGISTRY_BEAN_KEY);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; }&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; return registry;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; }&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; throw new IllegalStateException("No ProcessEngineCOnfiguration found in active context");&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; } &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;}&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;La configuration du alfresco-global.proporties&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;mail.host=zimbra.cni.tn&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;mail.port=25&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;A class="jive-link-email-small" href="mailto:mail.username=ibenchhida@cni.tn" rel="nofollow noopener noreferrer"&gt;mail.username=ibenchhida@cni.tn&lt;/A&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;mail.password=*********&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;mail.encoding=UTF-8&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;A class="jive-link-email-small" href="mailto:mail.from.default=ibenchhida@cni.tn" rel="nofollow noopener noreferrer"&gt;mail.from.default=ibenchhida@cni.tn&lt;/A&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;mail.smtp.auth=false&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;mail.smtp.timeout=30000&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mon fichier &amp;nbsp;.bpmn&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;lt;userTask id="usertask3" name="mail au fonctionnaire date prévu de livraison" activiti:assignee="${initiator.properties.userName}"&amp;gt;&lt;BR /&gt; &amp;lt;extensionElements&amp;gt;&lt;BR /&gt; &amp;lt;activiti:taskListener event="create" class="tn.mincom.mail.sender.MailSender"&amp;gt;&amp;lt;/activiti:taskListener&amp;gt;&lt;BR /&gt; &amp;lt;/extensionElements&amp;gt;&lt;BR /&gt; &amp;lt;/userTask&amp;gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;But i am having this Error&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;SPAN&gt; ERROR [action.executer.MailActionExecuter] [http-apr-8181-exec-8] Failed to send email to &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:ibenchhida@cni.tn" rel="nofollow noopener noreferrer"&gt;ibenchhida@cni.tn&lt;/A&gt;&lt;SPAN&gt; : org.springframework.mail.MailSendException: Mail server connection failed; nested exception is com.sun.mail.util.MailConnectException: Couldn't connect to host, port: zimbra.cni.tn, 25; timeout -1;&lt;/SPAN&gt;&lt;BR /&gt; nested exception is:&lt;BR /&gt; java.net.UnknownHostException: zimbra.cni.tn. Failed messages: com.sun.mail.util.MailConnectException: Couldn't connect to host, port: zimbra.cni.tn, 25; timeout -1;&lt;BR /&gt; nested exception is:&lt;BR /&gt; java.net.UnknownHostException: zimbra.cni.tn; message exceptions (1) are:&lt;BR /&gt;Failed message 1: com.sun.mail.util.MailConnectException: Couldn't connect to host, port: zimbra.cni.tn, 25; timeout -1;&lt;BR /&gt; nested exception is:&lt;BR /&gt; java.net.UnknownHostException: zimbra.cni.tn&lt;BR /&gt; 2017-01-17 10:48:01,979 DEBUG [repo.jscript.ScriptLogger] [http-apr-8181-exec-8] org.alfresco.service.cmr.workflow.WorkflowException: 00170022 Impossible de démarrer le workflow activiti$docAdmin:1:8104.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Sachant que je suis conncte avec un proxy, veuillez bien me donner un coup de main.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Jan 2017 09:56:04 GMT</pubDate>
    <dc:creator>inaam</dc:creator>
    <dc:date>2017-01-17T09:56:04Z</dc:date>
    <item>
      <title>Envoyer mail en utilisant TaskListener</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/envoyer-mail-en-utilisant-tasklistener/m-p/42052#M22548</link>
      <description>Bonjour, tout le monde.Je suis debutant en alfresco. J'essaye d'envoyer un mail en utilisant une classe java qui imlpemente TaskListenerimport org.activiti.engine.delegate.DelegateTask;import org.activiti.engine.delegate.TaskListener;import org.activiti.engine.impl.cfg.ProcessEngineConfigurationImpl</description>
      <pubDate>Tue, 17 Jan 2017 09:56:04 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/envoyer-mail-en-utilisant-tasklistener/m-p/42052#M22548</guid>
      <dc:creator>inaam</dc:creator>
      <dc:date>2017-01-17T09:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: Envoyer mail en utilisant TaskListener</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/envoyer-mail-en-utilisant-tasklistener/m-p/42053#M22549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bonjour,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;L'erreur bloquante est "UnknownHostException&lt;STRONG style="color: #727174; background-color: #ffffff; border: 0px; font-weight: bold;"&gt;&lt;EM style="border: 0px; font-weight: inherit;"&gt;"&lt;/EM&gt;&lt;/STRONG&gt;. Il semblerait que le nom d'hôte utilisé pour configuré ton serveur de mail ne soit pas connu par le serveur hébergeant Alfresco (problème DNS ?).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sur le serveur hébergeant Alfresco essai de pinger ton serveur de mail si cela ne marche pas je te conseille de te rapprocher des personnes en charges du réseau dans ton organisation afin d'obtenir un nom ou une IP permettant de joindre ton serveur d'envoi de mail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dans le cas d'un développement local tu peux regarder à FakeSMTP ou MailCatcher qui permettront d'effectuer des tests d'envoi sans polluer internet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yann&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2017 10:00:45 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/envoyer-mail-en-utilisant-tasklistener/m-p/42053#M22549</guid>
      <dc:creator>ycoulon</dc:creator>
      <dc:date>2017-01-17T10:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: Envoyer mail en utilisant TaskListener</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/envoyer-mail-en-utilisant-tasklistener/m-p/42054#M22550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;J'ai modifie l&lt;/SPAN&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;a configuration du alfresco-global.proporties&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mail.host=smtp.gmail.com&lt;BR /&gt;mail.port=465&lt;BR /&gt;&lt;A class="jive-link-email-small" href="mailto:mail.username=inaam.chhida@gmail.com" rel="nofollow noopener noreferrer"&gt;mail.username=inaam.chhida@gmail.com&lt;/A&gt;&lt;BR /&gt;mail.password=*******&lt;BR /&gt;mail.protocol=smtps&lt;BR /&gt;mail.smtps.starttls.enable=true&lt;BR /&gt;mail.smtps.auth=true&lt;BR /&gt;mail.smtp.debug=false&lt;BR /&gt;&lt;A class="jive-link-email-small" href="mailto:mail.from.default=inaam.chhida@gmail.com" rel="nofollow noopener noreferrer"&gt;mail.from.default=inaam.chhida@gmail.com&lt;/A&gt;&lt;BR /&gt;mail.from.enabled=false&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;et je n'utilise plus le proxy. et ca marche&lt;/P&gt;&lt;P&gt;Mais je veux chercher une solution avec le proxy que dois je faire.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2017 11:32:36 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/envoyer-mail-en-utilisant-tasklistener/m-p/42054#M22550</guid>
      <dc:creator>inaam</dc:creator>
      <dc:date>2017-01-17T11:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: Envoyer mail en utilisant TaskListener</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/envoyer-mail-en-utilisant-tasklistener/m-p/42055#M22551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bonjour,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Votre problème est de toute évidence lié à votre environnement interne : proxy, DNS, etc.&lt;/P&gt;&lt;P&gt;Je vous invite à relire la réponse de Yann qui vous demande de vérifier l'accessibilité de votre serveur de mail à partir du serveur Alfresco. Vous devez vérifier que le port 25 (SMTP) du serveur&amp;nbsp;zimbra.cni.tn est bien accessible depuis votre serveur Alfresco.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concernant votre proxy, pour vous aiguiller, il faudrait nous indiquer quel est sont rôle exact. Si c'est uniquement un proxy HTTP, il ne devrait pas y avoir d'impact sur les flux SMTP... sauf si, en plus, une règle de votre firewall bloque le trafic sortant autre que celui en provenance du proxy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cordialement,&lt;/P&gt;&lt;P&gt;Charles Le Seac'h&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2017 12:19:20 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/envoyer-mail-en-utilisant-tasklistener/m-p/42055#M22551</guid>
      <dc:creator>cleseach</dc:creator>
      <dc:date>2017-01-17T12:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: Envoyer mail en utilisant TaskListener</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/envoyer-mail-en-utilisant-tasklistener/m-p/42056#M22552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Merci, &lt;A _jive_internal="true" data-userid="81329" data-username="cleseach" href="https://community.alfresco.com/people/cleseach" style="color: #2e7d32; background-color: #ffffff; border: 0px; font-weight: 200; text-decoration: underline; font-size: 1.286rem;" rel="nofollow noopener noreferrer"&gt;Charles Le Seac'h&lt;/A&gt;&amp;nbsp;et &lt;A _jive_internal="true" data-userid="122232" data-username="ycoulon" href="https://community.alfresco.com/people/ycoulon" style="color: #2e7d32; background-color: #ffffff; border: 0px; font-weight: 200; text-decoration: underline; font-size: 1.286rem;" rel="nofollow noopener noreferrer"&gt;Yann Coulon&lt;/A&gt;&lt;SPAN style="color: #8bc34a; background-color: #ffffff; font-weight: 500;"&gt; &lt;/SPAN&gt;&lt;IMG alt="Modérateur" class="" height="16" src="https://migration33.stage.lithium.com/resources/statics/rolebadges/roleBadge-4-1004-1479735707524.png?a=1479735707542" style="color: #8bc34a; background-color: #ffffff; border: 0px; font-weight: 500; font-size: 10.9998px; margin: 0px 2px -3px -1px;" title="Modérateur" width="16" /&gt;&amp;nbsp;. J'ai résolu&amp;nbsp;le pbm. J'ai contacté l'équipe&amp;nbsp;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;réseau de mon organisation.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2017 09:21:10 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/envoyer-mail-en-utilisant-tasklistener/m-p/42056#M22552</guid>
      <dc:creator>inaam</dc:creator>
      <dc:date>2017-01-18T09:21:10Z</dc:date>
    </item>
  </channel>
</rss>

