惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
博客园 - 【当耐特】
博客园 - 叶小钗
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
D
Docker
T
The Blog of Author Tim Ferriss
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Azure Blog
Microsoft Azure Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
云风的 BLOG
云风的 BLOG
F
Fortinet All Blogs
罗磊的独立博客
小众软件
小众软件
A
About on SuperTechFans
MyScale Blog
MyScale Blog
D
DataBreaches.Net
The GitHub Blog
The GitHub Blog
C
Check Point Blog
L
LangChain Blog

博客园 - James

Change hostname on Ubuntu without reboot 51IT最全的自动化测试工具QTP资料 QTP如何启动应用程序(转) - James - 博客园 找出用户表中有重复密码的用户 如何改变Linux Kennel中的shmmax参数 如何在C语言中使用constructor和destructor,gcc环境 如何在Ubuntu上update gem for ruby 1.9.1的版本 google疯了 - James - 博客园 碰巧遇到一些智力面试题,解答一下 避免在电脑上浪费时间的好办法 如何在Postgresql中产生自己的集合function 用RJS写的检测用户名和email是否存在 ajax check username available in rails MSN Messager密码 - James - 博客园 重新开始Blog生活 准备用C#写一个Blog的客户端,大家看看功能缺哪些,哪些不需要? PInvoke 白话文 Apache 2 + PHP Windows安装指南(官方版本) .Text Blog .95中一个Unicode的bug - James
Send-only Mail Server with Exim on Ubuntu 10.04 LTS
James · 2012-04-17 · via 博客园 - James

Set the Hostname

Before you begin installing and configuring the components described in this guide, please make sure you've followed our instructions for setting your hostname. Issue the following commands to make sure it is set properly:

hostname
hostname -f

Run the  following commands to update your package repositories, upgrade your system, and install Exim:

apt-get update 
apt-get upgrade
apt-get install exim4-daemon-light mailutils

Configure Exim for Local Mail Service

Issue the following command to start Exim configuration:

dpkg-reconfigure exim4-config 

You'll be presented with a welcome screen, followed by a screen asking what type mail delivery you'd like to support. Choose the option for "internet site" and select "Ok" to continue.

Exim4 mail delivery type configuration on Ubuntu 10.04 LTS (Lucid).

Enter your system's FQDN (fully qualified domain name) in the "mail name" configuration screen.

Exim4 system mail name configuration on Ubuntu 10.04 LTS (Lucid).

Enter "127.0.0.1" when asked which IP address to listen on for SMTP connections.

Exim4 listening IP address configuration on Ubuntu 10.04 LTS (Lucid).

Make sure you list your FQDN, hostname, and localhost entries when you're asked which destinations mail should be accepted for.

Exim4 mail destination configuration on Ubuntu 10.04 LTS (Lucid).

Leave the relay domains and relay machines fields blank.

Exim4 relay domains configuration on Ubuntu 10.04 LTS (Lucid).

Select "No" when asked whether to keep DNS queries to a minimum.

Exim4 DNS queries configuration on Ubuntu 10.04 LTS (Lucid).

You may select either "mbox" or "Maildir" when asked about the delivery method used for incoming mail. While many utilities use mbox format, Maildir format can make handling individual locally delivered mail messages easier, and is widely supporting by a range of applications.

Exim4 mail format configuration on Ubuntu 10.04 LTS (Lucid).

Accept the default "non-split" option for your mail configuration file. Enter at least one external email address (choose one that you check frequently) in addition to "root" when asked to specify postmaster mail recipients.

Exim4 postmaster recipient configuration on Ubuntu 10.04 LTS (Lucid).

Test Your Mail Configuration

Issue the following command to send a test email, substituting an external email address for someone@somedomain.com.

echo "This is a test." | mail -s Testing someone@somedomain.com 

Congratulations! You've configured Exim to send email from your Linux VPS.