I installed postfix and got this error:
postdrop: warning: unable to look up public/pickup: No such file or directory.
Turns out that sendmail was previously installed and that was messing things up. I had to stop sendmail and make the appropriate directory and restart postfix.
Specifically:
mkfifo /var/spool/postfix/public/pickup
ps aux | grep mail
kill
sudo /etc/init.d/postfix restart
Test emailing
#email youremail@abc.com (enter)
subject: test (enter)
test (ctrl+d)
cc: youremail@abc.com (enter)
if your receive above then email everything is fine now! :)
Category List
- attachments (1)
- drupal (1)
- drupal6 (1)
- image attachments (1)
- linux (1)
- mimemail (1)
- thumbnail (1)
- ubantu (1)
- Youtube (1)
- Youtube API (1)
Worked for me. Thank you very much!!
Thank you !!!
Thanks! Searched for hours until I found this simple and quick solution. Brilliant!
Thx ! Also it's better to remove sendmail :
apt-get purge sendmail*
It worked very well for me
Thanks man!