If you use the App Manager to install ProjectSend, create a userid and then attempt to upload a file you will see the error message "One or more notifications couldn't be sent."
The file will upload but the expected e-mail notification will not be sent. Through some digging and suggestions from the excellent FQ support staff we figured out that the problem is phpmailer introduced a qmail bug. See
http://www.futurequest.net/forums/sh...ad.php?t=26568
The quick and dirty fix is to edit "your ProjectSend install directory"/includes/phpmailer/class.phpmailer.php
Line 925 - Original Code:
if (empty($this->Sender)) {
$params = "-oi ";
} else {
$params = sprintf(" -f%s", $this->Sender);
}
Modified:
if (empty($this->Sender)) {
$params = " ";
} else {
$params = sprintf(" -f%s", $this->Sender);
}
Or you can download and install the latest version of phpmailer 5.2.6 fixes the problem.