|
From: <de...@us...> - 2003-10-13 07:24:47
|
Update of /cvsroot/babeldoc/babeldoc/modules/scanner/config/i18n In directory sc8-pr-cvs1:/tmp/cvs-serv14858/babeldoc/modules/scanner/config/i18n Modified Files: messages.properties Log Message: Applying patch sent by Michael Ansley <mic...@ze...> for RFE #753908 (filters in MailboxScanner) Index: messages.properties =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/modules/scanner/config/i18n/messages.properties,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** messages.properties 10 Oct 2003 08:09:35 -0000 1.17 --- messages.properties 13 Oct 2003 07:24:39 -0000 1.18 *************** *** 85,89 **** scanner.MailboxScanner.error.gettingMessage=Error getting message from mail ! scanner.MailboxScannerInfo.description=The MailboxScanner is used for scanning mail servers for e-mail messages. Document can be scanned from e-mail body or from attachments. This is very useful for integration with email enabled clients. An example would be purchase orders emailed to a mailbox scanned by Babeldoc. scanner.MailboxScannerInfo.option.host=Mail server host name or address scanner.MailboxScannerInfo.option.protocol=Protocol which is used for connecting to mail server (pop3, imap...) --- 85,89 ---- scanner.MailboxScanner.error.gettingMessage=Error getting message from mail ! scanner.MailboxScannerInfo.description=The MailboxScanner is used for scanning mail servers for e-mail messages. Document can be scanned from e-mail body or from attachments. This is very useful for integration with email enabled clients. An example would be purchase orders emailed to a mailbox scanned by Babeldoc. The From, To and Subject filters are regular expression filters. Enter regular expressions which, if matched, cause the matching email to be processed. For example, if you wanted to match a recipient address of fir...@se..., you would enter "first\\.last@server\\.com" in the toFilter. The expressions are effectively OR'd together, because if any one of the filters gets a match, the e-mail message will be processed. The toFilter is tested against all addresses in the TO field. It is <emphasis>NOT</emphasis> tested against the CC or BCC fields. scanner.MailboxScannerInfo.option.host=Mail server host name or address scanner.MailboxScannerInfo.option.protocol=Protocol which is used for connecting to mail server (pop3, imap...) *************** *** 92,95 **** --- 92,98 ---- scanner.MailboxScannerInfo.option.password=Password for logging to mail server scanner.MailboxScannerInfo.option.getFrom=Should message be created using mail body or attachment. Default is body + scanner.MailboxScannerInfo.option.fromFilter=Regular expression which, if matched by the From field, causes the message to be processed + scanner.MailboxScannerInfo.option.toFilter=Regular expression which, if matched by the To field, causes the message to be processed + scanner.MailboxScannerInfo.option.subjectFilter=Regular expression which, if matched by the Subject field, causes the message to be processed scanner.ExternalApplicationScanner.description=The ExternalApplicationScanner runs an external application and pipes the standard output from that application into the pipeline. |