Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F117529051
20150120.maniphestdefaultauthor.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
Sat, Jun 14, 06:19
Size
674 B
Mime Type
text/x-php
Expires
Mon, Jun 16, 06:19 (2 d)
Engine
blob
Format
Raw Data
Handle
26746798
Attached To
rPH Phabricator
20150120.maniphestdefaultauthor.php
View Options
<?php
$key
=
'metamta.maniphest.default-public-author'
;
echo
pht
(
"Migrating `%s` to new application email infrastructure...
\n
"
,
$key
);
$value
=
PhabricatorEnv
::
getEnvConfigIfExists
(
$key
);
$maniphest
=
new
PhabricatorManiphestApplication
();
$config_key
=
PhabricatorMetaMTAApplicationEmail
::
CONFIG_DEFAULT_AUTHOR
;
if
(
$value
)
{
$app_emails
=
id
(
new
PhabricatorMetaMTAApplicationEmailQuery
())
->
setViewer
(
PhabricatorUser
::
getOmnipotentUser
())
->
withApplicationPHIDs
(
array
(
$maniphest
->
getPHID
()))
->
execute
();
foreach
(
$app_emails
as
$app_email
)
{
$app_email
->
setConfigValue
(
$config_key
,
$value
);
$app_email
->
save
();
}
}
echo
pht
(
'Done.'
).
"
\n
"
;
Event Timeline
Log In to Comment