@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Apply the wordwrap() hack for "To" to PHPMailerLite

Summary:
Fixes T12372. Long-term fix is T12404, this is a bandaid in the interim.

See T12372 for additional discussion.

Test Plan: Confirmed functional by a user in T12372.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T12372

Differential Revision: https://secure.phabricator.com/D17501

+4
+4
externals/phpmailer/class.phpmailer-lite.php
··· 656 656 $addr_str .= implode(', ', $addresses); 657 657 $addr_str .= $this->LE; 658 658 659 + // NOTE: This is a narrow hack to fix an issue with 1000+ characters of 660 + // recipients, described in T12372. 661 + $addr_str = wordwrap($addr_str, 75, "\n "); 662 + 659 663 return $addr_str; 660 664 } 661 665