First of all your SharePoint server should be added to Microsoft online safe sender list, so that SharePoint server can connect and deliver emails to Microsoft Exchange online.

SharePoint by default is configured to send Email over port 25 (default SMTP) but Microsoft online services are configured to receive Emails over port 587.

In order to bridge the gap between these two things, we can use in built feature of Windows Server OS to route Emails

In Short

  • We will be sending Emails to SharePoint Server OS itself over port 25.
  • Windows server  SMTP in turn will route the Emails to Microsoft online over port 587

Configuring Outgoing Email in MSF (Microsoft SharePoint Foundation), MSS (Microsoft SharePoint Server)

SMTP Configuration for Windows Server 2008

Pre - requisites : Need to install IIS 6 Manager.

Open the IIS 6 Manager on your Windows Server 2008 machine.

Go to the DSMTP Virtual Server properties

-> Go to Access,
click on Relay

-> Add the localhost IP 127.0.0.1 and the internal servers IP(192.168 Range) and public IP
and click ok.

->Goto Delivery
-> Click on Outbound security

-> Enable basic authentication, Enter the user name and password for authentication given by MS online

-> On Delivery
-> Outbound Security also enable TLS Encryption

->Click ok

->On Delivery ->  Click Outbound connection

-> Set TCP port to 587

->Click OK

->On Delivery

-> Go to Advanced tab

-> Set Fully Qualified domain name of your SharePoint server in the Fully-qualified domain
name.

-> Set smarthost  "your microsoft online smarthost"

-> Click OK

-> Click OK to close IIS 6 Manager.

Including IIS6 configuration, you should also do the below SMTP settings in IIS 7

SMTP configuration in IIS 7,

->Open IIS7 Manager

->Click on the Specific Web application where you want to configure outgoing emails.

->Click on SMTP E-mail

->SMTP Server
"localhost", Port 25

->Authentication  : not required.

Outgoing Email configuration in SharePoint  2010

Go to Central Admin
Site > Click on Outgoing Email settings.

->In the outbound SMTP server give the Fully qualified domain name of the SharePoint Server.

->From Address > Microsoft online account Email ID.

->Reply-to > Microsoft online account Email ID

Now you should be able to send Emails from SharePoint servers, configure alerts etc.,

For configuring outgoing Emails in MOSS, WSS when the base OS is Windows Server 2003

  • Please follow the steps to configure SMTP settings in IIS 6
  • The outgoing Email settings in MOSS are similar to SharePoint 2010

Step by step configuration of Outgoing Emails from SharePoint to Microsoft Online的更多相关文章

  1. Step by step Install a Local Report Server and Remote Report Server Database

    原创地址:http://www.cnblogs.com/jfzhu/p/4012097.html 转载请注明出处 前面的文章<Step by step SQL Server 2012的安装 &g ...

  2. Step by step Dynamics CRM 2013安装

    原创地址:http://www.cnblogs.com/jfzhu/p/4008391.html 转载请注明出处   SQL Server可以与CRM装在同一台计算机上,也可安装在不同的计算机上.演示 ...

  3. Tomcat Clustering - A Step By Step Guide --转载

    Tomcat Clustering - A Step By Step Guide Apache Tomcat is a great performer on its own, but if you'r ...

  4. Step by step guide to set up master and slave machines(转)

    Note: There is no need to install Jenkins on the slave machine. On your master machine go to Manage ...

  5. Step by step guide to set up master and slave machines on Windows

    Note: There is no need to install Jenkins on the slave machine. On your master machine go to Manage ...

  6. Step by Step Process of Migrating non-CDBs and PDBs Using ASM for File Storage (Doc ID 1576755.1)

    Step by Step Process of Migrating non-CDBs and PDBs Using ASM for File Storage (Doc ID 1576755.1) AP ...

  7. Asp.Net Core 5 REST API - Step by Step

    翻译自 Mohamad Lawand 2021年1月19日的文章 <Asp.Net Core 5 Rest API Step by Step> [1] 在本文中,我们将创建一个简单的 As ...

  8. Asp.Net Core 5 REST API 使用 JWT 身份验证 - Step by Step

    翻译自 Mohamad Lawand 2021年1月22日的文章 <Asp Net Core 5 Rest API Authentication with JWT Step by Step> ...

  9. Asp Net Core 5 REST API 使用 RefreshToken 刷新 JWT - Step by Step

    翻译自 Mohamad Lawand 2021年1月25日的文章 <Refresh JWT with Refresh Tokens in Asp Net Core 5 Rest API Step ...

随机推荐

  1. 多个Storyboard的使用

    创建一个Storyboard工程 storyboard是在ios5中引入的新控件,能够更加清晰.简单的整合多个ViewController的关系,下面主要介绍一下怎么初建一个storyboard的工程 ...

  2. 创维37K05HR黑屏有声音故障维修

    转载1: 接一台创维新机37L05HR,1年多,刚过保.开机图像声音正常,放10分钟左右黑屏.声音正常.关机再开有正常.2分钟又出现黑屏.在保修期内,售后 来修两次此类故障都没有根治.拆机测5V 12 ...

  3. 一种高效的 vector 四则运算处理方法

    实现 vector 的四则运算 这里假设 vector 的运算定义为对操作数 vector 中相同位置的元素进行运算,最后得到一个新的 vector.具体来说就是,假如 vector<int&g ...

  4. 在android中如何通过点击edittext之外的部分使软键盘隐藏

    我们知道在android中点击edittext框就会自动弹出软键盘,那怎么通过点击edittext之外的部分使软键盘隐藏呢?(微信聊天时的输入框就是这个效果,这个给用户的体验还是很不错的) 首先我们要 ...

  5. mount分区为读写属性

    对于只读文件系统, 如果想要挂载为可读写的, 需要重新mount下, 如将config分区mount为读写的分区: mount -o remount,rw /config

  6. 清除WebLogic8.1缓存

    在Domain目录下面有一个以server命名的文件夹,删除整个文件夹就可以了.

  7. iOS-nil,Nil,NULL的区别

    一.简述 1.nil用来给对象赋值(Objective-C中的任何对象都属于id类型) 2.NULL则给任何指针赋值,NULL和nil不能互换 3.nil用于类指针赋值(在Objective-C中类是 ...

  8. Android学习笔记之SoftReference软引用...

    PS:其实这一篇和上一篇很类似,都是为了解决内存不足(OOM)这种情况的发生... 学习内容: 1.对象的引用类....   最近也是通过项目中知道了一些东西,涉及到了对象的引用类,对象的引用类分为多 ...

  9. JS中 toString() & valueOf()

    数据的转换 所有对象继承了两个转换方法: 第一个是toString(),它的作用是返回一个反映这个对象的字符串 第二个是valueOf(),它的作用是返回它相应的原始值 toString() toSt ...

  10. 设计模式--适配器(Adapter)模式

    今天学习另一个设计模式,适配器(Adapter)模式,这是一个共同方向,但有特殊要求,就应用到此设计模式.写到这里,想起很久以前,有写过一篇<ASP.NET的适配器设计模式(Adapter)&g ...