1: <?php
2: /**
3: * Copyright 2011-2014 Horde LLC (http://www.horde.org/)
4: *
5: * See the enclosed file COPYING for license information (GPL). If you
6: * did not receive this file, see http://www.horde.org/licenses/gpl.
7: *
8: * @category Horde
9: * @copyright 2011-2014 Horde LLC
10: * @license http://www.horde.org/licenses/gpl GPL
11: * @package IMP
12: */
13:
14: /**
15: * This class implements an IMP system flag with matching on addresses.
16: *
17: * @author Michael Slusarz <slusarz@horde.org>
18: * @category Horde
19: * @copyright 2011-2014 Horde LLC
20: * @license http://www.horde.org/licenses/gpl GPL
21: * @package IMP
22: */
23: abstract class IMP_Flag_System_Match_Address extends IMP_Flag_Base
24: {
25: /**
26: * @param mixed $data Either a list of addresses (Horde_Mail_Rfc822_List)
27: * or the identity that matched the address list.
28: */
29: public function match($data)
30: {
31: return false;
32: }
33:
34: }
35: