zoukankan      html  css  js  c++  java
  • Ubuntu: Sending command line mail

    Ubuntu: Sending command line mail

    Ubuntu: Sending command line mail

    quietearth [General News 09.25.06]
    Tweet
    Share on Google+


    I needed to send email from the command line, specifically for cron jobs, and there are many programs which can do this. I'm going to use the gnu mailutils package so first off let's install the mailutils package:
    # apt-get install mailutils

    This will add a few extra packages, then bring us up into an exim4 configuration screen. My systems are behind a dsl router, and I'm not going to route the mail through any relay host, I just want everything sent direct (for some sendmail agents this might cause problems, but you'll have to look at your logfiles). In the exim4 config screen I pick "internet site... mail is sent and receieved directly using SMTP". On edgy you might have to answer a few more questions, but I had to run a dpkg-reconfigure.

    Click here to find out more!

    At this point we have exim4 listening on port 25 and I don't need that, so I need to stop the daemon and remove the startup links:
    # /etc/init.d/exim4 stop
    # update-rc.d -f exim4 remove

    The update-rc.d command removes inits startup/shutdown links, but unfortunately if the exim4 packages get updated the links will be back so we need to run that command again.

    Now lets try sending a test mail:
    # echo testing | mail -s Bla myemail@somewhere.com

    and take a look at /var/log/exim4/mainlog. You should be good to go!

    Tested under dapper and edgy.
  • 相关阅读:
    js获取input文本框内容问题
    Windows下更改pip镜像源
    php用mysql方式连接数据库出现Deprecated报错
    FTP服务与配置
    mySQL安装与基础配置
    httpd安装与配置(编译安装)
    Samba简介与配置(匿名&本地用户验证)
    NFS服务简介与配置
    OpenSSH配置与基本使用
    spark 提交任务学习
  • 原文地址:https://www.cnblogs.com/lexus/p/2859077.html
Copyright © 2011-2022 走看看