Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106308064
PhabricatorMacroMailReceiver.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Mar 24, 17:20
Size
771 B
Mime Type
text/x-php
Expires
Wed, Mar 26, 17:20 (2 d)
Engine
blob
Format
Raw Data
Handle
25164998
Attached To
rPH Phabricator
PhabricatorMacroMailReceiver.php
View Options
<?php
final
class
PhabricatorMacroMailReceiver
extends
PhabricatorObjectMailReceiver
{
public
function
isEnabled
()
{
$app_class
=
'PhabricatorApplicationManiphest'
;
return
PhabricatorApplication
::
isClassInstalled
(
$app_class
);
}
protected
function
getObjectPattern
()
{
return
'MCRO[1-9]
\d
*'
;
}
protected
function
loadObject
(
$pattern
,
PhabricatorUser
$viewer
)
{
$id
=
(
int
)
substr
(
$pattern
,
4
);
return
id
(
new
PhabricatorMacroQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
executeOne
();
}
protected
function
processReceivedObjectMail
(
PhabricatorMetaMTAReceivedMail
$mail
,
PhabricatorLiskDAO
$object
,
PhabricatorUser
$sender
)
{
// TODO: For now, we just drop this mail on the floor.
}
}
Event Timeline
Log In to Comment