Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google App Engine: Sendmail, command not found

I'm trying to get sendmail working on localhost. The problem is that the app engine has det wrong path to sendmail, since it throws the error: /bin/sh: sendmail: command not found

Using Mac OS X, the path to sendmail is: /usr/sbin/sendmail

Does anyone know how to change this?

..fredrik

like image 847
fredrik Avatar asked Dec 14 '09 10:12

fredrik


1 Answers

I don't know how to change it but a symlink will do the job. I had the same problem and this solved it:

sudo ln -s /usr/sbin/sendmail /usr/bin/sendmail

Another option is to configure your local AppEngine runtime to use an external SMTP server.

like image 160
Turadg Avatar answered Sep 18 '22 08:09

Turadg