Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96475004
PhabricatorApplicationMetaMTA.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Dec 27, 02:46
Size
990 B
Mime Type
text/x-php
Expires
Sun, Dec 29, 02:46 (2 d)
Engine
blob
Format
Raw Data
Handle
23190383
Attached To
rPH Phabricator
PhabricatorApplicationMetaMTA.php
View Options
<?php
final
class
PhabricatorApplicationMetaMTA
extends
PhabricatorApplication
{
public
function
getBaseURI
()
{
return
'/mail/'
;
}
public
function
getShortDescription
()
{
return
'View Mail Logs'
;
}
public
function
getIconName
()
{
return
'metamta'
;
}
public
function
getFlavorText
()
{
return
pht
(
'Yo dawg, we heard you like MTAs.'
);
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_ADMIN
;
}
public
function
getRoutes
()
{
return
array
(
$this
->
getBaseURI
()
=>
array
(
''
=>
'PhabricatorMetaMTAListController'
,
'send/'
=>
'PhabricatorMetaMTASendController'
,
'view/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorMetaMTAViewController'
,
'receive/'
=>
'PhabricatorMetaMTAReceiveController'
,
'received/'
=>
'PhabricatorMetaMTAReceivedListController'
,
'sendgrid/'
=>
'PhabricatorMetaMTASendGridReceiveController'
,
),
);
}
public
function
getTitleGlyph
()
{
return
'@'
;
}
}
Event Timeline
Log In to Comment