Merge branch 'rcsheets-docstring-cleanup'
[civicrm-core.git] / CRM / Mailing / MailStore / Pop3.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2014
32 * $Id$
33 *
34 */
35
36 require_once 'ezc/Base/src/ezc_bootstrap.php';
37 require_once 'ezc/autoload/mail_autoload.php';
38 class CRM_Mailing_MailStore_Pop3 extends CRM_Mailing_MailStore {
39
40 /**
41 * Connect to the supplied POP3 server and make sure the two mail dirs exist
42 *
43 * @param string $host host to connect to
44 * @param string $username authentication username
45 * @param string $password authentication password
46 * @param bool $ssl whether to use POP3 or POP3S
47 *
48 * @return void
49 */
50 function __construct($host, $username, $password, $ssl = TRUE) {
51 if ($this->_debug) {
52 print "connecting to $host and authenticating as $username\n";
53 }
54
55 $options = array('ssl' => $ssl);
56 $this->_transport = new ezcMailPop3Transport($host, NULL, $options);
57 $this->_transport->authenticate($username, $password);
58
59 $this->_ignored = $this->maildir(implode(DIRECTORY_SEPARATOR, array('CiviMail.ignored', date('Y'), date('m'), date('d'))));
60 $this->_processed = $this->maildir(implode(DIRECTORY_SEPARATOR, array('CiviMail.processed', date('Y'), date('m'), date('d'))));
61 }
62
63 /**
64 * Fetch the specified message to the local ignore folder
65 *
66 * @param integer $nr number of the message to fetch
67 *
68 * @return void
69 */
70 function markIgnored($nr) {
71 if ($this->_debug) {
72 print "fetching message $nr and putting it in the ignored mailbox\n";
73 }
74 $set = new ezcMailStorageSet($this->_transport->fetchByMessageNr($nr), $this->_ignored);
75 $parser = new ezcMailParser;
76 $parser->parseMail($set);
77 $this->_transport->delete($nr);
78 }
79
80 /**
81 * Fetch the specified message to the local processed folder
82 *
83 * @param integer $nr number of the message to fetch
84 *
85 * @return void
86 */
87 function markProcessed($nr) {
88 if ($this->_debug) {
89 print "fetching message $nr and putting it in the processed mailbox\n";
90 }
91 $set = new ezcMailStorageSet($this->_transport->fetchByMessageNr($nr), $this->_processed);
92 $parser = new ezcMailParser;
93 $parser->parseMail($set);
94 $this->_transport->delete($nr);
95 }
96 }
97