Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91652525
OwnersPackageReplyHandler.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
Wed, Nov 13, 02:54
Size
715 B
Mime Type
text/x-php
Expires
Fri, Nov 15, 02:54 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22301210
Attached To
rPH Phabricator
OwnersPackageReplyHandler.php
View Options
<?php
final
class
OwnersPackageReplyHandler
extends
PhabricatorMailReplyHandler
{
public
function
validateMailReceiver
(
$mail_receiver
)
{
if
(!(
$mail_receiver
instanceof
PhabricatorOwnersPackage
))
{
throw
new
Exception
(
"Receiver is not a PhabricatorOwnersPackage!"
);
}
}
public
function
getPrivateReplyHandlerEmailAddress
(
PhabricatorObjectHandle
$handle
)
{
return
null
;
}
public
function
getPublicReplyHandlerEmailAddress
()
{
return
null
;
}
public
function
getReplyHandlerDomain
()
{
return
null
;
}
public
function
getReplyHandlerInstructions
()
{
return
null
;
}
protected
function
receiveEmail
(
PhabricatorMetaMTAReceivedMail
$mail
)
{
return
;
}
}
Event Timeline
Log In to Comment