- Edited
Filter is correct, I've checked -it works for everything else but reply-to field. I've set as you recommended - no luck.I've investigated further and here is what I found:Filters are triggered upon ticket creation, in particular in this function (file class.ticket.php): try { // Make sure the email address is not banned if (TicketFilter:($vars)) { throw new RejectedException(Banlist:(), $vars); } // Init ticket filters... $ticket_filter = new TicketFilter($origin, $vars); $ticket_filter->apply($vars); }I've checked what is inside $vars and it appears to be that the info there is incorrect: => offline-messages => offline-messages@example.com => Сообщение с сайта mysite.com от zox@woohoo.com => <0000014ebb560a02-27c22e41-9d2c-41dd-afe2-e66ee89f004d-000000@eu-west-1.amazonses.com> => Received: from mxfront6h.mail.yandex.net () by mxfront6h.mail.yandex.net with LMTP id zDFeScNB for <support@support.mysite.com>; Thu, 23 Jul 2015 17 +0300Received: from a6-146.smtp-out.eu-west-1.amazonses.com (a6-146.smtp-out.eu-west-1.amazonses.com ) by mxfront6h.mail.yandex.net (nwsmtp/Yandex) with ESMTPS id XD43CFDAP7-YG3W7KZ4; Thu, 23 Jul 2015 17 +0300 (using TLSv1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (Client certificate not present)X-Yandex-Front: mxfront6h.mail.yandex.netX-Yandex-TimeMark: 1437662056Authentication-Results: mxfront6h.mail.yandex.net; spf=pass (mxfront6h.mail.yandex.net: domain of eu-west-1.amazonses.com designates 54.240.6.146 as permitted sender) smtp.mail=0000014ebb560a02-27c22e41-9d2c-41dd-afe2-e66ee89f004d-000000@eu-west-1.amazonses.com; dkim=pass header.i=@amazonses.comX-Yandex-Spam: 1DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/simple; s=uku4taia5b5tsbglxyj6zym32efj7xqv; d=amazonses.com; t=1437662055; h=Subject-To-Type-Transfer-Encoding-Version-ID-ID; bh=oGX5Nhl8W0GaFsa+DG3OSfXhsj2Cige5dUcMsNF6Mv0=; b=AKw+7b8lTqS+zaufmskAH5Uti9HFcKYE0SD4cK5HNZtKDJEbP2y7sGMimucNefUJ ZnmO0BDWWLZqQ/zoVkHE93tNIRcoYwUqBT658XUoAMr5FrG+H3KOn/0S7+nTMzqcHpb xSnT9ROD1Yif1qUHcxPtVD6eCt3NbaUtjoPAfJq0=DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/simple; s=q2kvnf6wdn3cucoh6u6jhjwbdr2uacee; d=example.com; t=1437662055; h=Subject-To-Type-Transfer-Encoding-Version-ID; bh=oGX5Nhl8W0GaFsa+DG3OSfXhsj2Cige5dUcMsNF6Mv0=; b=WSED8kQ1s2GjGdlBubMIPM4PbeDfQnq8aBAgCdQ5NIvT44GYy8NbhBMg9Swft9dG 2vhQLB45Xj6a6M8K+FWS3xRvrdHCoCDBFbRrlN8rOG1xABno0yhZ+z42cEe+50m1H1Y N3kcZF9SStWjtBYYV6ujyESK4RFtfZHBgg6ZPNGs=Subject: =?utf-8?Q?=D0=A1=D0=BE=D0=BE=D0=B1=D1=89=D0=B5=D0=BD=D0=B8=D0=B5=20?= =?utf-8?Q?=D1=81=20=D1=81=D0=B0=D0=B9=D1=82=D0=B0=20mysite.com=20?= =?utf-8?Q?=D0=BE=D1=82=20zox@woohoo.com?=From: offline-messages@example.comTo: support@support.mysite.comReply-To: zox@woohoo.comDate: Thu, 23 Jul 2015 14 +0000Content-Type: text/plain; charset=utf-8Content-Transfer-Encoding: quoted-printableContent-Disposition: inlineMIME-Version: 1.0Message-ID: <0000014ebb560a02-27c22e41-9d2c-41dd-afe2-e66ee89f004d-000000@eu-west-1.amazonses.com>X-SES-Outgoing: 2015.07.23-54.240.6.146Feedback-ID: 1.eu-west-1.ikBUQ8ihPSKu4AuEkmpbPR22urTnt57H+4c3sJWhOQ8=Return-Path: 0000014ebb560a02-27c22e41-9d2c-41dd-afe2-e66ee89f004d-000000@eu-west-1.amazonses.comX-Yandex-Forward: 94f75f0ddb54744ce8e4df2939e71f50 => => => offline-messages@example.com => => Array ( ) => 4 => 4 => ArrayObject Object ( => Array ( => ) ) => TextThreadBody Object ( => Вам пришло сообщение с сайта mysite.com!....So in spite the fact that header has correct reply to info, $vars variable is populated with frong info.Do you have any ideas how to fix it?