mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
44 lines
1 KiB
PHP
44 lines
1 KiB
PHP
|
<?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;
|
||
|
}
|
||
|
|
||
|
}
|