Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F103778646
PhabricatorMacroReplyHandler.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
Tue, Mar 4, 17:29
Size
733 B
Mime Type
text/x-php
Expires
Thu, Mar 6, 17:29 (2 d)
Engine
blob
Format
Raw Data
Handle
24639021
Attached To
rPH Phabricator
PhabricatorMacroReplyHandler.php
View Options
<?php
final
class
PhabricatorMacroReplyHandler
extends
PhabricatorMailReplyHandler
{
public
function
validateMailReceiver
(
$mail_receiver
)
{
if
(!(
$mail_receiver
instanceof
PhabricatorFileImageMacro
))
{
throw
new
Exception
(
'Mail receiver is not a PhabricatorFileImageMacro!'
);
}
}
public
function
getPrivateReplyHandlerEmailAddress
(
PhabricatorObjectHandle
$handle
)
{
return
$this
->
getDefaultPrivateReplyHandlerEmailAddress
(
$handle
,
'MCRO'
);
}
public
function
getPublicReplyHandlerEmailAddress
()
{
return
$this
->
getDefaultPublicReplyHandlerEmailAddress
(
'MCRO'
);
}
protected
function
receiveEmail
(
PhabricatorMetaMTAReceivedMail
$mail
)
{
// TODO: Implement this.
return
null
;
}
}
Event Timeline
Log In to Comment