I am getting a lot of
Rcpt To: <"Nickname"

problems... The problem is that some gateways trigger on the first "<" and return "501"

I have solved it for now by commenting out the code so it looks like below (and it seems to work - at least better but without nicknames) - but this probably has a more profound issue underneath...

mimemail.inc

...
// it's a user object
if (is_object($address) && isset($address->mail)) {
//CO buggy < header return '"'.addslashes($address->name).'" <'.$address->mail.'>';
//added line below instead
return $address->mail;
...

rgds
C

Comments

jerdavis’s picture

Status: Active » Closed (fixed)

This seems to be related to, or a duplicate of http://drupal.org/node/192831 - closing this out. If this is not the case or you have more information, please re-open.

Thanks!

Jer

develop healthtech’s picture

is there also a solution for drupal 6?