do i NEED to install a mail server? (forum emails not sent)
my question is: do i NEED to install an email server on my vps for this to work? i thought i could just use sendmail, but even though i have the sendmail location specified in my php.ini, emails are failing to be sent.
i don't have a need for an email like
thanks for any help you can give!
4 Replies
@ScratchMonkey:
The default sendmail configuration will also work, as it's designed for a desktop box that only does outgoing mail. (There are comments in the sendmail.mc config file for how to enable receiving mail.) But you do need to enable the daemon so that it will listen for mail connections from local processes: "chkconfig sendmail on". (That turns it on when the system boots.) "service sendmail start" will start the service immediately.
hmm i started following the documentation for installing postfix, and i'm about 90% there, (working on an issue with outgoing mail) but i noticed that running apt-get install sendmail, wants to remove postfix, but i don't want to lose all my work, so i'm going to try and finish that.
My comment is more for those who discover this thread, looking for a similar situation, and already have sendmail installed.