View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0012625 | phpList 3 application | Campaign Send Process | public | 08-12-07 13:34 | 05-06-13 16:37 |
Reporter | davideg | Assigned To | |||
Priority | normal | Severity | major | Reproducibility | always |
Status | resolved | Resolution | won't fix | ||
Product Version | 2.10.5 | ||||
Target Version | 2.10.7 | ||||
Summary | 0012625: safe_mode activity not correctly identified = sendmail_from wrong | ||||
Description | On "admin/phpmailer/class.phpmailer.php" line 430: if ($this->Sender != "" && strlen(ini_get("safe_mode"))< 1) strlen of init_get(safe_mode) is always 1 even if safe_mode is set to 0, so the cycle below is always skip and the envelope from is not set even if safe_mode is disabled. SOLUTION: Change the line above with: if ($this->Sender != "" && ini_get("safe_mode")< 1) Regards | ||||
Tags | No tags attached. | ||||