Page MenuHomestyx hydra

PonderQuestionReplyHandler.php
No OneTemporary

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, Apr 28, 6:02 PM (6 h, 43 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1307916
Default Alt Text
PonderQuestionReplyHandler.php (764 B)

Event Timeline