René Berber wrote:
> CR wrote:
>
>> Excite.com bounces any emails I send to a member, because the IP of my
>> SMTP server is blacklisted (by them, not any large BLs). I contacted
>> them about it, and got a bunch of runaround and no changes. I am not a
>> spammer, and the SMTP server will only relay for localhost.
>
> In exim.conf you need to change 2 things:
>
> - Section "begin routers"
>
> smart_route:
> driver = manualroute
> transport = remote_smtp
> route_list = \
> excite.com <your relay>; \
> ... any others, end w/o semicolon
>
> - Section "begin authenticators", depending on the method used to
> authenticate to your relay, you need one of:
>
> <your relay>_login:
> driver = plaintext
> public_name = LOGIN
> server_prompts = Username:: : Password::
> client_send = : <user name> : <password>
>
> <your relay>_plain:
> driver = plaintext
> public_name = PLAIN
> client_send = : <user name> : <password>
>
> <your relay>_cram_md5:
> driver = cram_md5
> public_name = CRAM-MD5
> client_name = <user name>
> client_secret = <password>
>
René and Jakob,
Thanks for the help. It works perfectly.
-CR