Closed (fixed)
Project:
Messaging
Version:
6.x-1.x-dev
Component:
MIME Mail
Priority:
Normal
Category:
Support request
Assigned:
Reporter:
Created:
24 Feb 2009 at 17:51 UTC
Updated:
17 Apr 2009 at 15:40 UTC
Jump to comment: Most recent file
Comments
Comment #1
Valeratal commentedIf I disable all Notification , cron run success
Comment #2
rkdesantos commentedI am also seeing this same error. The log doesn't provide anything that seems related. The only way to get things working is to clear the subscriptions queue (which defeats the whole purpose as the messages don't get sent). So this would seem to be some module interaction between Messaging and Notification and Subscriptions that has gone awry. I am using v 6.x-1.1
Comment #3
Valeratal commentedThanks
I waiting working Messaging and Notification
Comment #4
niallhatton commentedI am also having this problem.
Comment #5
zmove commentedSame here. /Subscribe
Comment #6
zmove commentedThe problem seems to be related with the mail ID.
In the module, line 39 we have
If you replace $mail['id'] by '', it will work.
I don't know the consequences to remove this last parameter. If some people knows, I would be happy to understand their opinion.
Another problem is that, by doing like that, you cannot override the mimemail theme function. I explain :
mimemail have a theme_ function if you want to override the default template for your mimemail. I overrided it by declaring a phptemplate_mimemail_message function in my template.php.
All works good for general drupal mail (I setup mimemail parameter to override all drupal mail)
But for emails sent by the mimemail notification module, the html that is sent to the email address is the html generated by the default theme_mimemail_message template. It completly ignore my override in template.php.
So, if you want to theme your email notification as you want using this module, you will have to hack the mimemail core.... not cool
Comment #7
jose reyero commentedSo this seems to be some messaging-mimemail integration issue, right?
I really have no idea of how mimemail works. So please someone translates for me this into 'how I need to change parameters passed to mimemail'....
Comment #8
rkdesantos commentedI'm sure if you contact the maintainer of Mimemail they will point you to the relevant information.
Comment #9
scottrigbyadding patch based on zmove's suggestion in #6 (even if this is only temporary). Mainly this is so I don't forget i made the change in the meantime.
Comment #10
fred0 commentedAlso experienced this. The patch does fix it. Hoping to hear official answer soon!
Comment #11
jose reyero commentedI'm a bit lost with the mimemail parameters too.
Anyway, if you guys say it works, it's welcomed. Applied the patch.
Thanks
Comment #12
DanilaD commentedI confirm this works for me. Format of automated mail did not change (I do not override it anywhere).
Thanks a lot!