mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
2c03cd931b
Summary: Supports !unsubscribe and commenting on replies. Subscribers get mailed something reasonable. Fixes T3480. Sneaks in /LX/ support. In the near future I want to have that /LX/ be a clean "signature" page sans all the edit actions and other fluff... Will resolve this as part of T3481. Test Plan: used the metamta console to add comments and unsubscribe. added a phlog() inside mail code to verify mail bodies looked okay. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T3480 Differential Revision: https://secure.phabricator.com/D6369
25 lines
575 B
PHP
25 lines
575 B
PHP
<?php
|
|
|
|
echo "Populating Legalpad Documents with mail keys...\n";
|
|
$table = new LegalpadDocument();
|
|
$table->openTransaction();
|
|
|
|
foreach (new LiskMigrationIterator($table) as $document) {
|
|
$id = $document->getID();
|
|
|
|
echo "Document {$id}: ";
|
|
if (!$document->getMailKey()) {
|
|
queryfx(
|
|
$document->establishConnection('w'),
|
|
'UPDATE %T SET mailKey = %s WHERE id = %d',
|
|
$document->getTableName(),
|
|
Filesystem::readRandomCharacters(20),
|
|
$id);
|
|
echo "Generated Key\n";
|
|
} else {
|
|
echo "-\n";
|
|
}
|
|
}
|
|
|
|
$table->saveTransaction();
|
|
echo "Done.\n";
|