ubuntu server 安装测试sendmail

 

 

  1. Ubuntu下使用最常用的mail功能,需要安装mailutils,安装命令:sudo apt-get install mailutils  
  2. 使用带附件的功能,则还需要安装sharutils,安装命令:sudo apt-get install sharutils;yum install sharutils  
  3. redhat下需要启动sendmail服务:/etc/init.d/sendmail start  

 

打开终端,输入命令:
sudo apt-get install sendmail
安装完
ps aux |grep sendmail

输出如下:
root      9391 0.0 0.3   8748 2000 ?        Ss   00:14   0:00 sendmail: MTA: accepting connections         
andy     13332 0.0 0.1   3236   792 pts/0    R+   03:58   0:00 grep sendmail

证明sendmail已经成功启动了

sudo vi /etc/php5/apache2/php.ini
找到 sendmail_path,修改为:
sendmail_path = /usr/sbin/sendmail -i -t

重启apache
sudo apache2ctl restart
 

测试

常用发送邮件方式如下:

    1.如何写一般的邮件: mail flynewton@gmail 编辑抄送对象,邮件主题,邮件正文后,按Ctrl-D结束

    2.快速发送方式: echo “邮件正文” | mail -s 邮件主题 [email protected]

    3.以文件内容作为邮件正文来发送: mail -s test [email protected] < test.txt

    4.发送带附件的邮件: uuencode 附件名称 附件显示名称 | mail -s 邮件主题 发送地址

       例如: uuencode test.txt test.txt | mail -s Test [email protected]

----------------------------------------

在ubuntu下搭建sendmail 后,使用上述命令,测试成功,第三条在英文环境下,也可以正常发送中文内容的txt文档,并在外部收件箱里正常显示

环境是自建的内部域名,可以向外部发送邮件
但从外部向内则不能发送邮件,因为域名为私有,公网上找不到

你可能感兴趣的:(职场,ubuntu,sendmail,休闲,mail命令)