* update i18n/L10n
* remove superfluous whitespace
This commit is contained in:
parent
b99b0555fd
commit
2d119df6d3
|
@ -51,16 +51,16 @@ class ImapPlugin extends Plugin
|
||||||
|
|
||||||
function initialize(){
|
function initialize(){
|
||||||
if(!isset($this->mailbox)){
|
if(!isset($this->mailbox)){
|
||||||
throw new Exception("must specify a mailbox");
|
throw new Exception(_m("A mailbox must be specified."));
|
||||||
}
|
}
|
||||||
if(!isset($this->user)){
|
if(!isset($this->user)){
|
||||||
throw new Exception("must specify a user");
|
throw new Exception(_m("A user must be specified.");
|
||||||
}
|
}
|
||||||
if(!isset($this->password)){
|
if(!isset($this->password)){
|
||||||
throw new Exception("must specify a password");
|
throw new Exception(_m("A password must be specified."));
|
||||||
}
|
}
|
||||||
if(!isset($this->poll_frequency)){
|
if(!isset($this->poll_frequency)){
|
||||||
throw new Exception("must specify a poll_frequency");
|
throw new Exception(_m("A poll_frequency must be specified."));
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -92,12 +92,12 @@ class ImapManager extends IoManager
|
||||||
{
|
{
|
||||||
return $this->check_mailbox() > 0;
|
return $this->check_mailbox() > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
function pollInterval()
|
function pollInterval()
|
||||||
{
|
{
|
||||||
return $this->plugin->poll_frequency;
|
return $this->plugin->poll_frequency;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function connect()
|
protected function connect()
|
||||||
{
|
{
|
||||||
$this->conn = imap_open($this->plugin->mailbox, $this->plugin->user, $this->plugin->password);
|
$this->conn = imap_open($this->plugin->mailbox, $this->plugin->user, $this->plugin->password);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user