当前位置:首页 » 操作系统 » linux邮箱

linux邮箱

发布时间: 2023-05-27 11:10:29

❶ 怎样订阅linux邮件

1.申请hotmail邮箱
2.用申请的hotmail邮箱向[email protected]发送邮件,邮件内容如穗悉下:
subscribe linux-kernel
3.等待回信,将收到邮侍困件,如下:
Confirmation for subscribe linux-kernel
发件人:Majordomo
时 间:2012年5月10日(星期四) 凌晨0:27 (UTC-05:00 华盛顿、多伦多、古巴、智利)
收件人: chaozang<[email protected]>
Someone (possibly you) has requested thatyour email address be added
to or deleted from the mailing list"[email protected]".

If you really want this action to be taken,please send the following
commands (exactly as shown) back to"[email protected]":

auth e3622bdd subscribe linux-kernel [email protected]

If you do not want this action to be taken,simply ignore this message
and the request will be disregarded.

If your mailer will not allow you to sendthe entire command as a single
line, you may split it using backslashes,like so:

auth e3622bdd subscribe linux-kernel \
[email protected]

If you have any questions about the policyof the list owner, please
contact"[email protected]".

Thanks!

[email protected]
4.回信,内容如下:
auth e3622bdd subscribe linux-kernel [email protected]
至此,尽情享受每天接收>200封linux内核开发邮件的喜悦吧猜谈乎!

❷ Linux认证系统管理:linuxmail命令发送邮件失败

Linux认证系统管理:linuxmail命令发送邮件失败

使用linux自带的邮件功能测试邮件发送功能如下:

$ mail -s test [email protected]

sldkfjlskdjf[CTRL+D]

cc:

有时会出再提示:

You have a new mail in /var/spool/mail/root

并且在邮箱中看不到邮件;

解决办法:

1.查看出错的日志

$ tail -n 50 /var/spool/mail/root

From MAILER-DAEMON@ltv_73 Thu Dec 12 11:35:28 2013

Return-Path:

Received: from localhost (localhost)

by ltv_73 (8.13.8/8.13.8) id rBC3ZSPe006446;

Thu, 12 Dec 2013 11:35:28 +0800

Date: Thu, 12 Dec 2013 11:35:28 +0800

From: Mail Delivery Subsystem

Message-Id: <201312120335.rBC3ZSPe006446@ltv_73>

To:

MIME-Version: 1.0

Content-Type: multipart/report; report-type=delivery-status;

boundary="rBC3ZSPe006446.1386819328/ltv_73"

Subject: Returned mail: see transcript for details

Auto-Submitted: auto-generated (failure)

This is a MIME-encapsulated message

--rBC3ZSPe006446.1386819328/ltv_73

The original message was received at Thu, 12 Dec 2013 11:35:18 +0800

from 41_154 [127.0.0.1]

----- The following addresses had permanent fatal errors -----

(reason: 530 5.7.1 Client was not authenticated)

----- Transcript of session follows -----

...while talking to mail.163.com.:

>>> MAIL From: SIZE=519

<<< 530 5.7.1 Client was not authenticated

554 5.0.0 Service unavailable

--rBC3ZSPe006446.1386819328/ltv_73

Content-Type: message/delivery-status

Reporting-MTA: dns; ltv_73

Received-From-MTA: DNS; sohu_41_154

Arrival-Date: Thu, 12 Dec 2013 11:35:18 +0800

Final-Recipient: RFC822; [email protected]

Action: failed

Status: 5.7.1

Diagnostic-Code: SMTP; 530 5.7.1 Client was not authenticated

Last-Attempt-Date: Thu, 12 Dec 2013 11:35:28 +0800

2.修改DNS

$ vim /etc/resolv.conf

修改成可用的DNS,这个地方的修改保存后即生效;

3.修改主机名【也可不做这一步】

$ sysctl kernel.hostname=newhostname

4.重启邮件服务

$ service sendmail restart

;

❸ LINUX下如何搭建邮件服务器

可以使用U-Mail邮件服务器

步骤如下:
1、下载U-Mail邮件系统forCentOS(6.X)一体盘
请去http://www.comingchina.com/html/downloads/下载U-Mail邮件服务器最新版本。
2、解析好域名,将域名的MX记录和的A记录解析到邮件服务器的IP地址。
MX记录和A记录解析方法参考:http://www.comingchina.com/html/faq/anzhuangzhongzhuangbeifen/954.html
如果是将邮件服务器放置在内网,通过端口映射的方式将外网IP的服务端口映射到内网,那么必须映射端口:25、110、80等。
3、将BIOS启动方式设置为光驱启动,并放入U-MailforCentOS(6.X)一体盘光盘
4、出现安装界面后,按回车键
5、设置TCP/IP参数(使用Tab键切换,空格键选择),选择如下图,按“OK”按钮。

❹ linux能收取163邮箱发来的邮件吗(非图形化界面)如果能,该如何配置

mutt+msmtp 可以做到发邮件,目前还没有在tty下收取商业邮箱的工具,mail -e只能收取系统管理员发送的邮件,而不是商业邮箱。
修改~/.msmtprc:
account qqmail
#设置认证方式, 此处为登录
auth login
#发送邮件的主机名
host smtp.163.com
from [email protected]
#你在你所使用的邮箱系统中的用户名
user [email protected]
#邮箱密码, 当然在这里我的密码是随便写的
password 123456
#日志文件
logfile ~/.msmtprc.log
#参数指定发送账户, 具体世中歼参数名请看msmtp的man page
account default:163mail

配置文件写好, 要将其权限修改为 chmod ~/.msmtprc 0600, 然后修改mutt的配置文件, 它的配置搜冲文件名为 ~/.muttrc:
#此处填写msmtp的绝对路径名, 可使用 which msmtp 命令得到
set sendmail="/usr/bin/msmtp"
set use_from=yes
#收件人看到的邮件发送人姓名
set realname="xxx"
set [email protected]
#邮件内培模容使用vi编写
set editor="vi"

两个配置文件都写好后, 尝试发送一封邮件来测试. 在命令行中输入
mutt -s 'just a test' [email protected]
邮件内容写好后, 按 :wq 保存退出, 进入另一个界面,按a可添加附件, 按y正式发送邮件。

❺ Linux系统邮件客户端 & Exchange账户相关

Linux系统下常见的邮件客户端有Thunderbird, Evolution, KMail, Geary, Sylpheed, Claws Mail, Mailspring (之前枝清的Nylas N1), Mutt等。出于个人喜好,每次都是无脑装Thunderbird。直到去年换了首搭简工作,新单位邮箱服务器是Exchange协议的,我就呵呵了。虽然Thunderbird可以装owl等插件,扩展对Exchange协议的支持,但使用一段时间提示license快到期 -_-# 。

最近换了Mailspring尝尝鲜,还是不支持Exchange协议,但可以开DavMail中转一把,估计后面还是会转回Thunderbird吧。

sudo apt-get install davmail

然后如下图简单的者裤配置一下,填上单位的EWS邮箱服务器地址,这里注意POP或IMAP/SMTP的本地端口,后面要用到的哦。

后面就可以配置邮件客户端了,服务器填本地的127.0.0.1,POP/IMAP/SMTP的端口和DavMail中设置的保持一致。收完邮件收工。

❻ linux下发送邮件过程

发邮件:
mail -s “标题” 对方@地址.com
然后输入内容
完成时 输入 . 然后回车

❼ linux里面怎样配置邮件服务器

Sendmail服务器配置
首先,在DNS正向解析上添加一个邮件交换器的名称
这里顺便把dns的测试也附上:

启动sendmail

正向主区域配置文件:

修改sendmail的配置文件
vi /etc/mail/sendmail.cf

改成

修改sendmail的配置文件
vi /etc/mail/sendmail.mc

去掉dnl

再添加两行

做输入重定向m4 /etc/mail/sendmail.mc>/etc/mail/sendmail.cf
编辑 /etc/mail/access

执行makemap hash /etc/mail/access.db </etc/mail/access

编辑vi /etc/mail/local-host-names把邮件服务器使用的域名给添加上去

重启sendmail服务

最后给[email protected]发送测试邮件

End。。。

❽ linux 怎么发送邮件

可以从网页上进行发送邮件,或者用邮件客户端都可以,一般linux系统都自带邮件客户端,如Evolution等。

热点内容
scratch少儿编程课程 发布:2025-04-16 17:11:44 浏览:642
荣耀x10从哪里设置密码 发布:2025-04-16 17:11:43 浏览:368
java从入门到精通视频 发布:2025-04-16 17:11:43 浏览:89
php微信接口教程 发布:2025-04-16 17:07:30 浏览:311
android实现阴影 发布:2025-04-16 16:50:08 浏览:794
粉笔直播课缓存 发布:2025-04-16 16:31:21 浏览:346
机顶盒都有什么配置 发布:2025-04-16 16:24:37 浏览:213
编写手游反编译都需要学习什么 发布:2025-04-16 16:19:36 浏览:818
proteus编译文件位置 发布:2025-04-16 16:18:44 浏览:369
土压缩的本质 发布:2025-04-16 16:13:21 浏览:594