From: SourceForge.net <no...@so...> - 2008-04-12 22:23:07
|
/mod/article item #1891422, was opened at 2008-02-11 16:01 Message generated for change (Comment added) made by adarkling You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=681146&aid=1891422&group_id=81360 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Thomas de Jesus (trf000) >Assigned to: Eloi George (adarkling) Summary: E-mail Article Initial Comment: Email article not working. I found a few missing {} in A_Mail.php. line 107: $tags['BACKLINK'] = '['..']'; i changed to $tags['BACKLINK'] = '["../"]'; that helped but i still get the following Notice and Warning: Notice: Undefined variable: error in E:\InetPub\webdev\mod\article\inc\A_mail.php on line 126 Warning: Invalid argument supplied for foreach() in E:\InetPub\webdev\mod\article\inc\A_mail.php on line 126 then when trying to send the mail i get: ERROR: The string you entered for the image verification did not match what was displayed. on linux, it will send the mail minus any content. On IIS it will not send mail at all. server is configured to send mail properly as maililist and user signup modules work. ---------------------------------------------------------------------- >Comment By: Eloi George (adarkling) Date: 2008-04-12 18:23 Message: Logged In: YES user_id=619893 Originator: NO OK, I fixed everything except for this: Warning: mail() [function.mail]: SMTP server response: 550 Relaying denied in E:\InetPub\webdev\lib\pear\Mail\mail.php on line 117 This just says that you need to check you server's mail settings. These links http://action.web.ca/home/support/faq.shtml?x=84607 and http://www.aota.net/forums/showthread.php?t=22976 may give you some idea of what's going on. ---------------------------------------------------------------------- Comment By: Thomas de Jesus (trf000) Date: 2008-02-11 17:04 Message: Logged In: YES user_id=860147 Originator: YES line 29 changed: if (Captcha::verify($_POST['captcha'])) $error[3] = dgettext('article', 'The string you entered for the image verification did not match what was displayed.'); to if (!Captcha::verify($_POST['captcha'])) $error[3] = dgettext('article', 'The string you entered for the image verification did not match what was displayed.'); I now get the following notices and warnings: Notice: Undefined variable: text in E:\InetPub\webdev\mod\article\class\AM_Actions.php on line 315 Notice: Only variable references should be returned by reference in E:\InetPub\webdev\lib\pear\Mail\mime.php on line 569 Notice: Only variable references should be returned by reference in E:\InetPub\webdev\lib\pear\Mail\mime.php on line 593 Warning: mail() [function.mail]: SMTP server response: 550 Relaying denied in E:\InetPub\webdev\lib\pear\Mail\mail.php on line 117 AND this message... EMAIL ERROR: mail() returned failure ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=681146&aid=1891422&group_id=81360 |