Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to know how to setup my exim4 on Debian so that it can use gmail as the smarthost, rather than my ISP. It appears to need TLS to be setup, and of course a gmail userid and password. The "standard" smarthost example that comes with exim4 in Debian doesn't have these.

share|improve this question

closed as off topic by wRAR, martin clayton, Roku, Abbas, ldav1s Apr 19 at 20:39

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

up vote 3 down vote accepted

The above solution didn't work for some reason but the solution here worked for me.

http://www.manu-j.com/blog/wordpress-exim4-ubuntu-gmail-smtp/75/

The only change I did was to use xyz@mydomain.com instead of xyz@gmail.com in the “begin authenticators” section.

share|improve this answer
Yes, this is a great answer – Macker Nov 22 '09 at 13:11

First, install stunnel4 and configure it to map [127.0.0.1]:587 to smtp.gmail.com:465 like this:

client=yes
[smtp-gmail]
accept = 587
connect = smtp.gmail.com:465

Then reconfigure exim4:

dpkg-reconfigure exim4-config

Configure exim4 to use a lot of small files, smarthost through localhost:587

Edit /etc/exim4/passwd.client and add:

localhost:yourname@gmail.com:yourpassword

Remember to check permissions, and then run:

update-exim4.conf

That should do it.

share|improve this answer
Thanks for the answer. I will try it. Why must stunnel be used, i.e. why can't exim4 coomunicate with gmail's smtp host directly? – Macker May 17 '09 at 18:37
I don't think it "must" - merely that this is easier to explain. – geocar May 18 '09 at 15:55
I've voted this down as I never liked having to use another piece of software (stunnel) where it should not be needed. – Macker Nov 22 '09 at 13:13

See the instructions on Debian Wiki:

http://wiki.debian.org/GmailAndExim4

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.