Active
Project:
Watcher
Version:
6.x-1.3
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
28 Dec 2009 at 04:21 UTC
Updated:
31 Dec 2009 at 17:58 UTC
Just reporting a possible incompatibility with 'SMTP Authentication Support' (Version 6.x-1.0-beta4)
Attempting to add a comment to a node which is being watched gives the error 'Invalid address: "(Site Name)"' on a white page.
Nonetheless, the email from Watcher is sent through to the end user, and the comment is still added to the node.
Comments
Comment #1
earok commentedJust an update -
Fixed the issue on my site by altering the line in the watcher.module
$message = drupal_mail('watcher', 'notification', $to, $language, $params, $from, true);
To read:
$message = drupal_mail('watcher', 'notification', $to, $language, $params);
Now it delivers the message without generating an error.
Comment #2
solipsist commentedAlright, one of the new features to be added soon is the ability to select sender field format. Watcher uses the "Site Name " format to make the sender of the email appear as the Site Name of the site instead of its contact email address, since I think it looks a lot better. Certain modules cannot handle that, for which there is a workaround in the code but it cannot cover every possible one. In the future, it'll be possible to choose whether to use Name, Name or just email as sender.