Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96145277
PholioReplyHandler.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, Dec 23, 02:33
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Dec 25, 02:33 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23131636
Attached To
rPH Phabricator
PholioReplyHandler.php
View Options
<?php
/**
* @group pholio
*/
final
class
PholioReplyHandler
extends
PhabricatorMailReplyHandler
{
public
function
validateMailReceiver
(
$mail_receiver
)
{
if
(!(
$mail_receiver
instanceof
PholioMock
))
{
throw
new
Exception
(
"Mail receiver is not a PholioMock!"
);
}
}
public
function
getPrivateReplyHandlerEmailAddress
(
PhabricatorObjectHandle
$handle
)
{
return
$this
->
getDefaultPrivateReplyHandlerEmailAddress
(
$handle
,
'M'
);
}
public
function
getPublicReplyHandlerEmailAddress
()
{
return
$this
->
getDefaultPublicReplyHandlerEmailAddress
(
'M'
);
}
public
function
getReplyHandlerDomain
()
{
return
PhabricatorEnv
::
getEnvConfig
(
'metamta.pholio.reply-handler-domain'
);
}
public
function
getReplyHandlerInstructions
()
{
if
(
$this
->
supportsReplies
())
{
// TODO: Implement.
return
null
;
return
"Reply to comment."
;
}
else
{
return
null
;
}
}
protected
function
receiveEmail
(
PhabricatorMetaMTAReceivedMail
$mail
)
{
// TODO: Implement this.
return
null
;
}
}
Event Timeline
Log In to Comment