Page MenuHomePhorge

PhrictionReplyHandler.php
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

PhrictionReplyHandler.php

<?php
final class PhrictionReplyHandler extends PhabricatorMailReplyHandler {
public function validateMailReceiver($mail_receiver) {
if (!($mail_receiver instanceof PhrictionDocument)) {
throw new Exception('Mail receiver is not a PhrictionDocument!');
}
}
public function getPrivateReplyHandlerEmailAddress(
PhabricatorObjectHandle $handle) {
return $this->getDefaultPrivateReplyHandlerEmailAddress(
$handle,
PhrictionDocumentPHIDType::TYPECONST);
}
public function getPublicReplyHandlerEmailAddress() {
return $this->getDefaultPublicReplyHandlerEmailAddress(
PhrictionDocumentPHIDType::TYPECONST);
}
public function getReplyHandlerDomain() {
return PhabricatorEnv::getEnvConfig('metamta.reply-handler-domain');
}
public function getReplyHandlerInstructions() {
if ($this->supportsReplies()) {
// TODO: Implement.
return null;
} else {
return null;
}
}
protected function receiveEmail(PhabricatorMetaMTAReceivedMail $mail) {
// TODO: Implement.
return null;
}
}

File Metadata

Mime Type
text/x-php
Expires
Sun, Jun 29, 11:05 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
265934
Default Alt Text
PhrictionReplyHandler.php (1 KB)

Event Timeline