Page MenuHomePhorge

PonderQuestionReplyHandler.php
No OneTemporary

Size
764 B
Referenced Files
None
Subscribers
None

PonderQuestionReplyHandler.php

<?php
final class PonderQuestionReplyHandler 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 getReplyHandlerInstructions() {
return null;
}
protected function receiveEmail(PhabricatorMetaMTAReceivedMail $mail) {
// ignore this entirely for now
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Sep 16, 4:54 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
378451
Default Alt Text
PonderQuestionReplyHandler.php (764 B)

Event Timeline