Page MenuHomestyx hydra

PonderReplyHandler.php
No OneTemporary

PonderReplyHandler.php

<?php
final class PonderReplyHandler extends PhabricatorMailReplyHandler {
public function validateMailReceiver($mail_receiver) {
if (!($mail_receiver instanceof PonderQuestion)) {
throw new Exception("Mail receiver is not a PonderQuestion!");
}
}
public function getPrivateReplyHandlerEmailAddress(
PhabricatorObjectHandle $handle) {
return $this->getDefaultPrivateReplyHandlerEmailAddress($handle, 'Q');
}
public function getPublicReplyHandlerEmailAddress() {
return $this->getDefaultPublicReplyHandlerEmailAddress('Q');
}
public function getReplyHandlerDomain() {
return PhabricatorEnv::getEnvConfig(
'metamta.maniphest.reply-handler-domain');
}
public function getReplyHandlerInstructions() {
return null;
}
protected function receiveEmail(PhabricatorMetaMTAReceivedMail $mail) {
// ignore this entirely for now
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Dec 2, 9:44 PM (4 h, 44 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
432649
Default Alt Text
PonderReplyHandler.php (895 B)

Event Timeline