Moodle PHP Documentation 4.2
Moodle 4.2.8 (Build: 20240610) (2d41ac46f45)
tool_messageinbound

Namespaces

namespace  tool_messageinbound
  
 
namespace  tool_messageinbound\message\inbound
  
 
namespace  tool_messageinbound\privacy
  
 
namespace  tool_messageinbound\task
  
 

Classes

class  tool_messageinbound\manager
 Mail Pickup Manager. More...
 
class  tool_messageinbound\message\inbound\invalid_recipient_handler
 A Handler to re-process messages which previously failed sender verification. More...
 
class  tool_messageinbound\privacy\provider
 Data provider class. More...
 
class  tool_messageinbound\task\cleanup_task
 A scheduled task to handle cleanup of old, unconfirmed e-mails. More...
 
class  tool_messageinbound\task\pickup_task
 A scheduled task to handle Inbound Message e-mail pickup. More...
 
class  tool_messageinbound_edit_handler_form
 Form to edit handlers. More...
 
class  tool_messageinbound_renderer
 Implements the plugin renderer. More...
 

Variables

 $handlers
 
 $messageproviders
 
 $plugin = 2023041800
 
 $tasks
 
$plugin component = 'tool_messageinbound'
 
$plugin version = 2023042400
 

Detailed Description

Variable Documentation

◆ $handlers

$handlers
Initial value:
= array(
array(
'classname' => '\tool_messageinbound\message\inbound\invalid_recipient_handler',
'enabled' => true,
'validateaddress' => false,
),
)

◆ $messageproviders

$messageproviders
Initial value:
= array (
'invalidrecipienthandler' => array(),
'messageprocessingerror' => array(),
'messageprocessingsuccess' => array(),
)

◆ $tasks

$tasks
Initial value:
= array(
array(
'classname' => '\tool_messageinbound\task\pickup_task',
'blocking' => 0,
'minute' => '*',
'hour' => '*',
'day' => '*',
'dayofweek' => '*',
'month' => '*'
),
array(
'classname' => '\tool_messageinbound\task\cleanup_task',
'blocking' => 0,
'minute' => '55',
'hour' => '1',
'day' => '*',
'dayofweek' => '*',
'month' => '*'
),
)