zoukankan      html  css  js  c++  java
  • 运维技巧(3):管理邮箱配额限制:重点是powershell命令操作

    如果不在用户级别做配额限制,那默认将遵从数据库级别的配额设置

    用户级别:

    默认有三个配额选项可以设置,具体每个选项代表什么意思,请仔细阅读下面图片的提示信息

    Powershell方式设置单个用户配额限制

    设置
    Set-Mailbox -Identity zengchuixin -IssueWarningQuota 20GB -ProhibitSendQuota 21GB -ProhibitSendReceiveQuota 22GB
    查看
    Get-Mailbox -Identity zengchuixin | fl name,issuewarningquota,prohibitsendquota,prohibitsendreceivequota

    powershell方式设置数据库配额限制

    设置
    Set-MailboxDatabase test -IssueWarningQuota 10GB -ProhibitSendQuota 11GB -ProhibitSendReceiveQuota 12GB
    查看
    Get-MailboxDatabase -Identity test | fl name,issuewarningquota,prohibitsendquota,prohibitsendreceivequota
     
  • 相关阅读:
    操作系统简介
    正则表达式
    Python socket
    计算机网络基础
    计算机基础
    Python常用模块
    Python模块和包
    Python反射和内置方法(双下方法)
    Python类的成员
    更改命令行,完全显示hostname
  • 原文地址:https://www.cnblogs.com/yujianadu/p/14180099.html
Copyright © 2011-2022 走看看