gwynne Posted May 18, 2016 Posted May 18, 2016 We have a format where a certain job type is logged with a subject line however it seems like hornbill either thinks its an update and trys to append to a non existent job or just auto deletes them Is there anyway or resolving this it has been tested, below are the subject lines of the jobs PNX - <prime010702240 - Roger Barker > - <end nom> - <msmith> - <priority> PNX - <prime010088469 - Lynne Lewis > - <end nom> - <msmith> - <medium> PNX - <prime006908631 - Leonard Max Truppin> - <end nom> - <msmith> - <medium> PNX - <prime007307558 - Anthony Bourke > - <end nom> - <msmith> - <medium> PNX - <prime007605335 - Gerald Furniss > - <end nom> - <msmith> - <medium> PNX - <prime007032267 - Thomas Davies > - <end nom > - <msmith> - <msmith> PNX - <prime006930439 - Robert Johnston> - <end nom > - <msmith> - <medium> FW: PNX - <prime009505571 - Raymond Pilcher > - <end pre- wrond DOD> - <msmith> - <medium>
Victor Posted May 18, 2016 Posted May 18, 2016 In your auto responder Update Request rule expression is: REGEX_MATCH(subject, '.*[a-zA-Z]{2}[0-9]{8}.*') This means find any string in the subject that has a 2 letter 8 numbers format together - i.e. not separated by anything because of [a-zA-Z]{2}[0-9]{8}. Looking at the following example: Subject: PNX - <prime010702240 - Roger Barker > - <end nom> - <msmith> - <priority> The matching is done on the following string: me01070224 Because rule expression evaluates as <anything>me01070224<anything> For example, if you put a space between "prime" and the numbers then it will be no match. If you have email updates with call references in the subject, usually the call references are a separate word so you might account for this in your rule expression.
gwynne Posted May 18, 2016 Author Posted May 18, 2016 Hi Victor Great Response, I am not very good with setting these things please could you help me with how I would account for these type of subject lines while not stopping the updates to other calls? cheers G
Victor Posted May 19, 2016 Posted May 19, 2016 Try this for the rule expression: REGEX_MATCH(subject, '.*[ ][a-zA-Z]{2}[0-9]{8}[ ].*') The "[ ]" has a space in it, is not just empty. Theoretically it should work, let me know the outcome. Thanks
gwynne Posted May 19, 2016 Author Posted May 19, 2016 Hello, The space worked to not delete them however this is now caused duplicate assigned emails to be produced, may not be this but its the only email change I have made today. and no process has been changed I have logged with support as well Regards Gareth
gwynne Posted May 19, 2016 Author Posted May 19, 2016 Update looks like this has been happening before nobody told me
Victor Posted May 19, 2016 Posted May 19, 2016 I got the email with the notification duplicate emails. I am looking into this now. So far I can't/could not see anything obviously wrong but I'll keep looking. Glad to see the REGEX works now
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now