DS1NMA Blog

Microsoft 365 Exchange Online의 기본 메일 수발신 크기는 20MB로 고정되어 있다.

그래서 첨부파일이 20MB 이상이 되면 발신이 안되거나, 첨부파일이 20MB 이상 탑재된 메일이 수신되면 차단이 된다.

이를 위해서 조정이 필요하다.

 

아래는 본인이 지원받은 Microsoft Customer Support의 전언이다.

1)admin.exchange.microsoft.com
관리자 계정으로 위 URL 접근받는사람 >사서함>메일 흐름 설정 
 

 
2.메시지 크기 제한 클릭 


 
3.보낸 메시지,수신 메시지 크기를 희망하시는 사이즈로 변경 해주세요.
 

 

 

그러나, 이렇게 설정하면 기본 설정은 되지만 이미 생성된 계정 및 사서함에는 적용되지 않는다.

그래서 추가 질문에 답변된 사항은

이전 메일에서 안내 드린 설정 방법은 전체 사서함 설정은 맞으나 설정 이후 부터 생성된 전체 사서함에만 적용되는 부분 확인했습니다.
기존 사서함 같은 경우에는 각 사서함별로 클릭해서 변경하거나 Powershell 전체 적용 해야 합니다
 
아래는 파워쉘 진행 방법입니다.
 
Windows 하단 검색란에 Powershell 프로그램 검색  우클릭 하여 관리자권한으로 실행해주세요
 
1.Set-ExecutionPolicy -ExecutionPolicy bypass process
2.Install-module exchangeonlinemanagement -force
3.Connect-ExchangeOnline
4.get-mailbox | set-mailbox -MaxSendSize 100mb -MaxReceiveSize 100mb
 
MaxSendSize =발신 메시지 크기 설정 
MaxReceiveSize =수신 메시지 크기 설정
 
* 명령어 하나씩 복사 붙여넣기 해주세요 
*MaxSendSize,MaxReceiveSize 희망하는 사이즈로 변경  복붙 해주세요
*설정가능 Maximum size 135mb입니다
*로그인창 발생하면 고객님의 관리자 계정으로 로그인 부탁드립니다
 

 

Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.
          
새로운 기능 및 개선 사항에 대 한 최신 PowerShell을 설치 하세요! https://aka.ms/PSWindows                                                                                                                                                        
PS C:\Users\DS1NMA> Set-ExecutionPolicy -ExecutionPolicy bypass process                                                 
PS C:\Users\DS1NMA> Install-module exchangeonlinemanagement -force                                                                                                                                                                              
계속하려면 NuGet 공급자가 필요합니다.
NuGet 기반 리포지토리를 조작하려면 PowerShellGet에 NuGet 공급자 버전 '2.8.5.201' 이상이 필요합니다. 'C:\Program
Files\PackageManagement\ProviderAssemblies' 또는
'C:\Users\DS1NMA\AppData\Local\PackageManagement\ProviderAssemblies'에서 NuGet 공급자를 사용할 수 있어야 합니다. 또한
'Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force'를 실행하여 NuGet 공급자를 설치할 수 있습니다.
지금 PowerShellGet에서 NuGet 공급자를 설치하고 가져오시겠습니까?
[Y] 예(Y)  [N] 아니요(N)  [S] 일시 중단(S)  [?] 도움말 (기본값은 "Y"): y
PS C:\Users\DS1NMA> Connect-ExchangeOnline

----------------------------------------------------------------------------------------
This V3 EXO PowerShell module contains new REST API backed Exchange Online cmdlets which doesn't require WinRM for Client-Server communication. You can now run these cmdlets after turning off WinRM Basic Auth in your client machine thus making it more secure.

Unlike the EXO* prefixed cmdlets, the cmdlets in this module support full functional parity with the RPS (V1) cmdlets.

V3 cmdlets in the downloaded module are resilient to transient failures, handling retries and throttling errors inherently.

REST backed EOP and SCC cmdlets are also available in the V3 module. Similar to EXO, the cmdlets can be run without WinRM basic auth enabled.

For more information check https://aka.ms/exov3-module
----------------------------------------------------------------------------------------

PS C:\Users\DS1NMA> get-mailbox | set-mailbox -MaxSendSize 120mb -MaxReceiveSize 120mb

 

이렇게 하니, 메세지 크기 제한이 늘어났다.