meta data for this page
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ticket_email_parse [2023/07/07 22:33] – johnny | ticket_email_parse [2024/11/01 15:22] (current) – Clarify behaviour for anonymous/unknown emails wrongecho | ||
---|---|---|---|
Line 3: | Line 3: | ||
Client contacts can create/ | Client contacts can create/ | ||
- | 1. Install PHP extensions: (These will be installed if you installed script method) | + | 1. Install PHP extensions: (//These will be installed if you installed |
* php-imap | * php-imap | ||
* php-mailparse | * php-mailparse | ||
Line 16: | Line 16: | ||
3. Turn on: Settings > Ticket > Email-to-ticket parsing | 3. Turn on: Settings > Ticket > Email-to-ticket parsing | ||
- | 4. Add a cron job to run //email_parser_cron.php// every minute | + | 4. Add a cron job to run //cron_ticket_email_parser.php// every minute |
- | 5. Ensure that all clients have the correct ' | + | 5. Decide whether you wish to automatically create tickets |
+ | - Ensure that all clients have the correct ' | ||
+ | |||
+ | - Enable Admin > Ticket > "// | ||
+ | |||
+ | ====== How it works ====== | ||
+ | - Cron runs cron_ticket_email_parser.php | ||
+ | - The email inbox is checked for unread messages | ||
+ | - If an unread message is found, it's marked as read & checked for a ticket reference in the subject ((e.g. [TCK-091]) | ||
+ | - If there is a ticket reference | ||
+ | - The ticket info is fetched & checked to be open | ||
+ | - If the ticket is open, the reply is added | ||
+ | - If the ticket is closed, an auto response is sent and a notification raised | ||
+ | - If there isn't a ticket reference - it's treated as a new message | ||
+ | - We check for an existing contact (based on the email) and raise the ticket under them | ||
+ | - If there' | ||
+ | - If so, we create a new contact under that client for the user and raise the ticket under them | ||
+ | - If not, we leave the email in the inbox to be actioned manually (or if the //unknown senders// setting is enabled we create the ticket with no contact/ | ||
+ | - If the email was successfully processed (e.g. a ticket raised / reply added), the message is moved to the ITFlow folder once attachments are processed | ||
===== Notes ===== | ===== Notes ===== | ||
* Only supports **basic auth**entication. This will not work with Microsoft as they require OAuth. | * Only supports **basic auth**entication. This will not work with Microsoft as they require OAuth. | ||
- | * The IMAP connection uses the same SMTP Username/ | ||
* As closed tickets cannot be re-opened, replies to closed tickets raise a notification | * As closed tickets cannot be re-opened, replies to closed tickets raise a notification | ||
- | * Emails | + | * By default, emails |
+ | * This behaviour can be adjusted by enabling "// |