|
If you are interested this is what I found out and
how I fixed our install, it's now working perfectly!
The problem was that RoundCube was doing the EHLO
to our mail server and claiming to be localhost (which it's not) instead of the
actual hostname (roundcube.whatever.com). Our mail server saw this as a SPAM
attempt in which the spammer was claiming to be localhost which is what they do
many times.
To fix this, I did some digging in the code and
found a file eventually named rcube_smtp.inc which is in the program/include
directory.
I found this line:
$helo_host = !empty($_SERVER['server_name']) ?
$_SERVER['server_name'] : 'localhost';
and changed it to:
$helo_host = !empty($_SERVER['server_name']) ?
$_SERVER['server_name'] : 'roundcube.mydomain.com';
Where roundcube.mydomain.com is the full hostname
of the server running the RoundCube code.
Hope this helps!
--Todd
--
Start Your Own Internet Service!
http://www.YourOwnISP.com ----- Original Message -----
|
- Outbound email fails via smtp Brady J. Frey
- Re: Outbound email fails via smtp Mojo Jojo
- Re: Outbound email fails via smtp Mojo Jojo
- Re: Outbound email fails via smtp Mojo Jojo
- Re: Outbound email fails via smtp Brady J. Frey
- Re: Outbound email fails via smtp Mojo Jojo
- Re: Outbound email fails via smtp Brady J. Frey
- Re: Outbound email fails via smtp Brady J. Frey
- Re: Outbound email fails via smtp Mojo Jojo
- Re: Outbound email fails via smtp Brady J. Frey
- Re: Outbound email fails via s... Mojo Jojo
- Re: Outbound email fails via s... Brady J. Frey
- Re: Outbound email fails via s... Mojo Jojo
- Re: Outbound email fails via s... Brady J. Frey
