• Retrieve all – Retrieve all emails in the mailbox.
• Advanced – Use the filter parameters below to specify which emails to retrieve. You can use wildcards.
– From – Retrieve emails with specific From addresses.
– To – Retrieve emails with specific To addresses.
– Cc – Retrieve emails with specific Cc addresses.
– Date – Use a timeframe to specify which emails to retrieve. The timeframe corresponds to the date and time the email was received. Use YYYY-MM-DD as format.
– Subject – Retrieve emails with specific subjects.
– Reply to – Retrieve emails with specific Reply to addresses.
– Request encryption – Select to reject un-encrypted emails.
– Request signature – Select to reject unsigned emails.
Example 5 Date: 2002-01-**
Example 6 If Read attachment file is *.xml, the attachments INVOICE_101.xml and COPY_101.xml will be processed.
• No – Do not delete emails.
• Delete Processed – Delete all retrieved and processed emails.
• Delete all – Delete all retrieved emails.
• Advanced – Use the filter parameters below to specify which retrieved emails to delete.
– Delete From – Delete emails with specific From addresses.
– Delete To – Delete emails with specific To addresses.
– Delete Cc – Delete emails with specific Cc addresses.
– Delete Date – Use a timeframe to specify which emails to delete. The timeframe corresponds to the date and time the email was received. Use YYYY-MM-DD as format.
– Delete Subject – Delete emails with specific subjects.
– Delete Reply to – Delete emails with specific Reply to addresses
Example 7 Delete Date: 2002-01-**
Example 8 $i=1;$count = GetAttachmentCount();while(num($i)<=num($count)){$original = GetAttachmentOriginalFile(num($i));if($original = "streamserve.gif"){$file = GetAttachmentFile(num($i));}$i++;}Attachments saved to disk are not removed automatically. One way to delete the attachments is to call an After Event script using the FileDelete scripting function.
Example 9 $i=1;$count = GetAttachmentCount();while(num($i)<=num($count)){$delete = GetAttachmentFile(num($i));FileDelete($delete);$i++;}Opens the Scheduler Configuration dialog where you specify when and how often to try to retrieve emails. See Scheduling actions in the Design Center documentation for more information about scheduling.For example, use this option in “auto reply Projects”, and use the GetConnectorValue script function to retrieve the appropriate email attributes (From, Reply To, etc.).You can use the CurrInFileName scripting function to fetch the file name of the current attachment sent through the StreamServer.You can use the scripting function GetConnectorValue to fetch EmailIN attributes.
GetConnectorValue("<attribute>") GetConnectorValue("From") GetConnectorValue("To") GetConnectorValue("Cc") GetConnectorValue("Reply To") GetConnectorValue("Subject") GetConnectorValue("Date") GetConnectorValue("Encoding") GetConnectorValue("Type") GetConnectorValue("AttEncoding<n>")where <n> is the attachment number. GetConnectorValue("AttType<n>")where <n> is the attachment number. GetConnectorValue("AttCount")
OpenText StreamServe 5.6 | Updated: 2013-03-01 |