Sendmail on Ubuntu

Install Sendmail on Ubuntu

I also need my php applications to be able to send our email using the mail function. Therefore I need to install sendmail and enable it in my php.ini file.
Install Sendmail

apt-get install sendmail

Check its working

ps -aux | grep sendmail

Change php.ini

replace
;sendmail_path =
with
sendmail_path =  /usr/sbin/sendmail

Config Sendmail

sudo sendmailconfig

Change your host files

homename
/etc/hosts
127.0.0.1 localhost.localdomain localhost myhostname

Related posts:

  1. Installing LAMP on Ubuntu
  2. Setup Ubuntu as a Web Server
  3. Install APC on Ubuntu with PHP 5.3
  4. How to install Memcached on Xampp on Windows 7
  5. How to Install Rsync on Ubuntu

Twitter Updates