There are five files to render help: contents, index, keywords, name and overview.
You will access the contents using context id like this: context_id=<root help>.ManifestProcessMaint.Queen.email_autoresponse. Here are as that examples:
contents:
<p><font face="Verdana" size="2"> <p> <img src="help::this.figures.help-s.png"/> <h3>Email Autoresponder Manifest Process Maintenance Page</h3> </p> <p> <a id="Purpose"><b>Purpose</b></a><br> Maintain an email autoresponder manifest process. <br><br> The Email Autoresponse takes an incoming email message from a mailbox, and sends the response using the recogniser patern to determine the response to 'replyto' /or sender. <br><br> As with all Lightant queenProcess, you are required to have a unique 'process.name' value. The 'process.type' value corresponds to the processor source to load from the processes directory. If this configuration file is designed to load the code in processes/foo/bar.php, the entry for 'process.type' should be foo_bar. </p> <p> <a id="Operations"><b>Operations</b></a><br> <ol type="I"> <li>Create<br> <br> <br> <ol> <li>Screenshots<br> <br> <img src="help::this.figures.hlp_en_queenmanifestmaint_new__email_autoresponse.png"/> </li> <br> <li>Fields<br> <br> <ol type="a"> <li>Write manifest as explain in <b>Manifest Contents</b> below.<br> </li> <br> </ol> </li> </ol> </li> <li>Update<br> <br> <br> <ol> <li>Screenshots<br> <br> <img src="help::this.figures.hlp_en_queenmanifestmaint_update__email_autoresponse.png"/> </li> <br> <li>Fields<br> <br> <ol type="a"> <li>Write manifest as explain in <b>Manifest Contents</b> below.<br> </li> <br> </ol> </li> </ol> </li> <li>Delete<br> <br> <br> <ol> <li>Screenshots<br> <br> <img src="help::this.figures.hlp_en_queenmanifestmaint_update__email_autoresponse.png"/> </li> <br> <li>Fields<br> <br> <ol type="a"> </ol> </li> </ol> </li> <li>Cancel<br> <br> <br> <ol> <li>Screenshots<br> <br> <img src="help::this.figures.hlp_en_queenmanifestmaint_update__email_autoresponse.png"/> </li> <br> <li>Fields<br> <br> <ol type="a"> </ol> </li> </ol> </li> </ol> </p> <p> <a id="ManifestContents"><b>Manifest Contents</b></a><br> <ol> <li>Structure<br> <fieldset style="border: 1px dotted ;" > <PRE> <?xml version="1.0" encoding="UTF-8"?> <configuration id="email_autoresponse"> <section name="core"> <!-- Process Configuration--> <config name="process"> <config name="type">email_autoresponse</config> <config name="name"></config> <config name="description"></config> <config name="start"></config> <config name="end"></config> </config> <!--Mail Connection--> <config name="connections"> <config name="mail"> <config name="type">Mail</config> <config name="host"></config> <config name="user"></config> <config name="password"></config> <config name="service"></config> <config name="authuser"></config> <config name="crypto"></config> <config name="anonymous"></config> <config name="debug"></config> <config name="secure"></config> <config name="norsh"></config> <config name="notls"></config> <config name="readonly"></config> <config name="validate-cert"></config> <config name="novalidate-cert"></config> <config name="options"></config> <config name="n_retries"></config> <config name="port"></config> <config name="mailboxes"> <config name="source"></config> <config name="handled"></config> <config name="unhandled"></config> </config> </config> </config> <config name="testcode"></config> <!--Recognizer--> <config name="recognizer"> <config name="minLetters"></config> <config name="maxLetters"></config> <config name="brain"> #THE BRAIN CONFIGURATION# </config> </config> <!--Responder--> <config name="responder"> <config name="default"></config> <config name="directory"></config> <config name="names"> <config name="{RESPONDER NAME}"> <config name="type"><> #THE RESPONDER CONFIGURATION# </config> <config name="{RESPONDER NAME}"> <config name="type"><> #THE RESPONDER CONFIGURATION# </config> </config> </config> <!--Control--> <config name="control"> <config name="sleepingduration"></config> <config name="errorsthreshold"></config> </config> <!--Response--> <config name="response"> <config name="to"></config> <config name="from"></config> <config name="replyto"></config> <config name="rpath"></config> <config name="cc"></config> <config name="bcc"></config> <config name="subject"></config> </config> </section> </configuration> </PRE> </fieldset> </li> <li>Parameters<br> <ol type="a"> <li>id<br> The identity of manifest. </li> <li>core.process.type<br> The process type of manifest. Type is email_autoresponse. </li> <li>core.process.name<br> The name given to this manifest. </li> <li>core.process.description<br> The additional information to manifest. </li> <li>core.process.start<br> The first date (time) the process will be executed. </li> <li>core.process.end<br> The last date (time) the process will be executed. </li> <li>core.connections.mail.type<br> The type of connection. The value should be and always: MAIL. </li> <li>core.connections.mail.host<br> The mail server host name or IP address. </li> <li>core.connections.mail.user<br> The account/ user of mail server. </li> <li>core.connections.mail.password<br> The password of account/user of mail server. </li> <li>core.connections.mail.service<br> The type of service of this mail connection. </li> <li>core.connections.mail.authuser<br> The remote authentication user. </li> <li>core.connections.mail.crypto<br> The crypto type of connection:ssl,tls,null. </li> <li>core.connections.mail.anonymous<br> For anonymous connection mode. </li> <li>core.connections.mail.debug<br> Activate debuging. </li> <li>core.connections.mail.secure<br> Do not transmit a plaintext password. </li> <li>core.connections.mail.norsh<br> Do not use rsh or ssh to establish a preauthenticated. </li> <li>core.connections.mail.notls<br> Do not do start-tls. </li> <li>core.connections.mail.readonly<br> Request read-only mailbox open. </li> <li>core.connections.mail.validate-cert<br> Validate certificates from tls/ssl server. </li> <li>core.connections.mail.novalidate-cert<br> Do not validate certificates from tls/ssl server. </li> <li>core.connections.mail.options<br> Options of connection. </li> <li>core.connections.mail.n_retries<br> Number of maximum connect attempts. </li> <li>core.connections.mail.port<br> Port to your mail server. </li> <li>core.connections.mail.mailboxes.source<br> Mailbox name. </li> <li>core.connections.mail.mailboxes.handled<br> Mailbox name for handled email. </li> <li>core.connections.mail.mailboxes.unhandled<br> Mailbox name for unhandled email. </li> <li>core.testcode<br> The test code of email contents. </li> <li>core.recognizer.minLetters<br> The anagram minimum length. </li> <li>core.recognizer.maxLetters<br> The anagram maximum length. </li> <li>core.recognizer.brain<br> The brain configuration. </li> <li>core.responder.default<br> The default response. </li> <li>core.responder.directory<br> The directory location of responder. </li> <li>core.responder.names<br> The responder configuration. </li> <li>core.control.sleepingduration<br> The sleeping time on subsequence errors. </li> <li>core.control.errorsthreshold<br> The errors threshold for sleeping stage. </li> <li>core.response.to<br> The destination of email. </li> <li>core.response.from<br> The source of email. </li> <li>core.response.replyto<br> The destination of reply. </li> <li>core.response.rpath<br> The return path on error. </li> <li>core.response.cc<br> The cc of email. </li> <li>core.response.bcc<br> The bcc of email. </li> <li>core.response.subject<br> The subject of email. </li> </ol> </li> <li>Example<br> <fieldset style="border: 1px dotted ;" > <PRE> <?xml version="1.0" encoding="UTF-8"?> <configuration id="email_autoresponse"> <section name="core"> <!-- Process Configuration--> <config name="process"> <config name="type">email_autoresponse</config> <config name="name">CIISONLINE_COM_AUTORESPONSE</config> <config name="start"></config> <config name="end"></config> </config> <!--Mail Connection--> <config name="connections"> <config name="mail"> <config name="type">Mail</config> <config name="host">imap.gmail.com</config> <config name="user">ciisonline.com</config> <config name="password"></config> <config name="crypto">ssl</config> <config name="port">993</config> <config name="service">imap</config> <config name="mailboxes"> <config name="source">inbox</config> <config name="handled">handled</config> <config name="unhandled">unhandled</config> </config> </config> </config> <!--Recognizer--> <config name="recognizer"> <config name="minLetters">5</config> <config name="maxLetters">7</config> <config name="brain"> <config name="type">TextBrain</config> <config name="fact">Application/Email/Recognizers/responder.fact</config> <config name="knowledge">Application/Email/Recognizers/responder.knowledge</config> </config> </config> <!--Responder--> <config name="responder"> <config name="default">Default</config> <config name="directory">Application/Email/Responder/</config> <config name="names"> <config name="Default"> <!--#THE RESPONDER CONFIGURATION#--> <config name="type">Application_Email_Responder_Body</config> <config name="use_template">1</config> <config name="mail"> <config name="from">ciisonline.net@gmail.com</config> <config name="fromname">CIISONLINE NET</config> <config name="replyto">ciisonline.net@gmail.com</config> <config name="replytoname">CIISONLINE NET</config> <config name="rpath">ciisonline.net@gmail.com</config> <config name="body" xml:space="preserve"> Hello {toname}, Thanks You {fromname} </config> </config> </config> <config name="OrderForm"> <!--#THE RESPONDER CONFIGURATION#--> <config name="type">Application_Email_Responder_Body</config> <config name="use_template">1</config> <config name="mail"> <config name="from">ciisonline.net@gmail.com</config> <config name="fromname">CIISONLINE NET</config> <config name="replyto">ciisonline.net@gmail.com</config> <config name="replytoname">CIISONLINE NET</config> <config name="rpath">ciisonline.net@gmail.com</config> <config name="body">OrderForm</config> <config name="bodyfile"></config> <config name="altbody"></config> <config name="altbodyfile"></config> </config> </config> <config name="ProductInfo"> <!--#THE RESPONDER CONFIGURATION#--> <config name="type">Application_Email_Responder_Mime</config> <config name="use_template">1</config> <config name="mail"> <config name="from">ciisonline.net@gmail.com</config> <config name="fromname">CIISONLINE NET</config> <config name="replyto">ciisonline.net@gmail.com</config> <config name="replytoname">CIISONLINE NET</config> <config name="rpath">ciisonline.net@gmail.com</config> <!--<config name="mime"></config>--> <config name="mimefile">Application/Email/Mimes/html.eml</config> </config> </config> <config name="ProductCatalog"> <!--#THE RESPONDER CONFIGURATION#--> <config name="type">Application_Email_Responder_Mime</config> <config name="use_template">1</config> <config name="mail"> <config name="from">ciisonline.net@gmail.com</config> <config name="fromname">CIISONLINE NET</config> <config name="replyto">ciisonline.net@gmail.com</config> <config name="replytoname">CIISONLINE NET</config> <config name="rpath">ciisonline.net@gmail.com</config> <!--<config name="mime"></config>--> <config name="mimefile">Application/Email/Mimes/message.eml</config> </config> </config> </config> </config> <!--Control--> <config name="control"> <config name="sleepingduration">1000</config> <config name="errorsthreshold">10</config> </config> <!--Response--> </section> </configuration> </PRE> </fieldset> </li> </ol> </p> <p> <a id="RelatedPages"><b>Related Pages</b></a><br> <ol> <li><a href="help::this.ManifestProcessesList">Manifest Processes List Page</a><br> Display list of Queen manifest processes. </li> </ol> </p> <p> <a id="RelatedTopics"><b>Related Topics</b></a><br> <ol> <li><a href="help::LIGHTARMY-UserGuide.Concepts.General.Manifest">Manifest (Concept)</a></li> <li><a href="help::LIGHTARMY-UserGuide.Concepts.General.ServiceBus">Service Bus (Concept)</a></li> <li><a href="help::LIGHTARMY-UserGuide.Concepts.General.Capability">Capability (Concept)</a></li> <li><a href="help::LIGHTARMY-UserGuide.Concepts.General.AutomationPlatform">Automation Platform (Concept)</a></li> <li><a href="help::LIGHTARMY-UserGuide.Concepts.General.ProcessPlatform">Process Platform (Concept)</a></li> <li><a href="help::LIGHTARMY-UserGuide.Concepts.Application.Queen">Queen (Concept)</a></li> <li><a href="help::LIGHTARMY-UserGuide.Concepts.Application.Nest">Nest (Concept)</a></li> </ol> </p> <p> <a id="Notes"><b>Notes</b></a><br> <ol> </ol> </p> </font></p>index:
Email Autoresponder Manifest Process Maintenance Email Autoresponder Manifest Process Maintenance Pagekeywords:
Email Autoresponder Manifest Process Maintenance Email Autoresponder Manifest Process Maintenance Pagename:
Email Autoresponder Manifest Process Maintenance Pageoverview:
<p><font face="Verdana" size="2"> <p> <h3>Email Autoresponder Manifest Process Maintenance Page</h3> </p> <p> <a id="Purpose"><b>Purpose</b></a><br> Maintain an email autoresponder manifest process. <br><br> The Email Autoresponse takes an incoming email message from a mailbox, and sends the response using the recogniser patern to determine the response to 'replyto' /or sender. <br><br> As with all Lightant queenProcess, you are required to have a unique 'process.name' value. The 'process.type' value corresponds to the processor source to load from the processes directory. If this configuration file is designed to load the code in processes/foo/bar.php, the entry for 'process.type' should be foo_bar. </p>
No comments:
Post a Comment