What's format of EWS block list

hi
I need to block some EWS clients in my company. i have try command set-organizationconfig  ..... and get the result like :
[PS] D:\temp>Get-OrganizationConfig |select ews*
EwsEnabled                 : True
EwsAllowOutlook            : True
EwsAllowMacOutlook         : False
EwsAllowEntourage          : False
EwsApplicationAccessPolicy : EnforceBlockList
EwsAllowList               :
EwsBlockList               : {CloudMagic*,Mac*}
however, still found some user could receive mail via ews clients (ews agent: Mac+OS+X/10.9.4+(13E28);+ExchangeWebServices/4.0+(193))
i do deny Mac* in block list, but it does not work.
do i set block list in correct format?  {xxx,xxx}
what is the correct format of EWSblocklist? If i have several agents to be blocked, how can i set it?
Go Patriots

Hello,
Just for your reference:
How to: Control access to EWS in Exchange
http://msdn.microsoft.com/en-us/library/office/dn467892(v=exchg.150).aspx
Thanks,
Simon Wu
TechNet Community Support

Similar Messages

  • ALV Block List

    What is ALV Block List, anybody have documentation or sample programs, mail to [email protected]
    Regards
    Vijaya

    Hi,
    Herewith i am attaching the sample report for alv block list.
    Hope it will helps u.
    REPORT  YMS_ALVBLOCK.
    Declarations for BLOCK ALV DISPLAY
    *--type pools
    TYPE-POOLS:SLIS.
    DATA:X_LAYOUT TYPE SLIS_LAYOUT_ALV,
    T_FIELD TYPE SLIS_T_FIELDCAT_ALV,
    *--field catalog
    X_FLDCAT LIKE LINE OF T_FIELD,
    *--to hold all the events
    T_EVENTS TYPE SLIS_T_EVENT,
    X_EVENTS TYPE SLIS_ALV_EVENT,
    T_SORT TYPE SLIS_T_SORTINFO_ALV,
    X_SORT LIKE LINE OF T_SORT ,
    *--Print Layout
    X_PRINT_LAYOUT TYPE SLIS_PRINT_ALV.
    *----Macro to add field catalog.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    DEFINE ADD_CATALOG.
      CLEAR X_FLDCAT.
      X_FLDCAT-FIELDNAME = &1.
      X_FLDCAT-SELTEXT_M = &2.
      X_FLDCAT-OUTPUTLEN = &3.
      X_FLDCAT-TECH = &4.
      X_FLDCAT-COL_POS = &5.
      X_FLDCAT-NO_ZERO = 'X'.
      X_FLDCAT-DDICTXT = 'M'.
      X_FLDCAT-DATATYPE = &6.
      X_FLDCAT-DDIC_OUTPUTLEN = &7.
      IF &6 = 'N'.
        X_FLDCAT-LZERO = 'X'.
      ENDIF.
    *--build field catalog
      APPEND X_FLDCAT TO T_FIELD.
    END-OF-DEFINITION.
    *----- data declerations.
    DATA: V_REPID LIKE SY-REPID.
    DATA: BEGIN OF ITAB OCCURS 0,
    MATNR LIKE MARA-MATNR,
    ERNAM LIKE MARA-ERNAM,
    MEINS LIKE MARA-MEINS,
    END OF ITAB.
    DATA: BEGIN OF JTAB OCCURS 0,
    MATNR LIKE MAKT-MATNR,
    MAKTX LIKE MAKT-MAKTX,
    END OF JTAB.
    SELECT MATNR ERNAM MEINS
    UP TO 20 ROWS
    FROM MARA
    INTO TABLE ITAB.
    SELECT MATNR MAKTX
    UP TO 20 ROWS
    FROM MAKT
    INTO TABLE JTAB.
    V_REPID = SY-REPID.
    *DISPLAY alv
    Initialize Block
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
      EXPORTING
        I_CALLBACK_PROGRAM = V_REPID.
    *Block 1:
    *INITIALIZE
    REFRESH T_FIELD. CLEAR T_FIELD.
    REFRESH T_EVENTS.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    ADD_CATALOG:
    'MATNR' 'Material' '18' '' '1' 'C' '18',
    'ERNAM' 'Created By' '12' '' '2' 'C' '12',
    'MEINS' 'Unit' '5' '' '3' 'C' '3'.
    *--build table for events.
    X_EVENTS-FORM = 'TOP_OF_LIST1'.
    X_EVENTS-NAME = SLIS_EV_TOP_OF_LIST.
    APPEND X_EVENTS TO T_EVENTS.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
      EXPORTING
        IS_LAYOUT                  = X_LAYOUT
        IT_FIELDCAT                = T_FIELD
        I_TABNAME                  = 'ITAB'
        IT_EVENTS                  = T_EVENTS
        IT_SORT                    = T_SORT
      TABLES
        T_OUTTAB                   = ITAB
      EXCEPTIONS
        PROGRAM_ERROR              = 1
        MAXIMUM_OF_APPENDS_REACHED = 2
        OTHERS                     = 3.
    IF SY-SUBRC <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
      WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *--BLOCK 2(SUMMARY REPORT)
    *INITIALIZE
    REFRESH T_FIELD. CLEAR T_FIELD.
    REFRESH T_EVENTS.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    ADD_CATALOG:
    'MATNR' 'Material' '20' '' '1' 'C' '18',
    'MAKTX' 'Description' '40' '' '2' 'C' '40'.
    *--build table for events.
    X_EVENTS-FORM = 'TOP_OF_LIST2'.
    X_EVENTS-NAME = SLIS_EV_TOP_OF_LIST.
    APPEND X_EVENTS TO T_EVENTS.
    Append table block.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
      EXPORTING
        IS_LAYOUT                  = X_LAYOUT
        IT_FIELDCAT                = T_FIELD
        I_TABNAME                  = 'JTAB'
        IT_EVENTS                  = T_EVENTS
      TABLES
        T_OUTTAB                   = JTAB
      EXCEPTIONS
        PROGRAM_ERROR              = 1
        MAXIMUM_OF_APPENDS_REACHED = 2
        OTHERS                     = 3.
    IF SY-SUBRC <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
      WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *--CALL FM TO DISPLAY THE BLOCK REPORT.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    exporting
    is_print = x_print_layout
    EXCEPTIONS
    PROGRAM_ERROR = 1
    OTHERS = 2.
    IF SY-SUBRC <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
      WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *&      Form  top_of_list1
          text
    FORM TOP_OF_LIST1.
      SKIP 1.
      WRITE: 10 'List 1',
      /5 '----
      SKIP 1.
      FORMAT RESET.
    ENDFORM.                    "top_of_list1
    *&      Form  top_of_list2
          text
    FORM TOP_OF_LIST2.
      SKIP 1.
      WRITE: 10 'List 2',
      /5 '----
      SKIP 1.
      FORMAT RESET.
    ENDFORM.                    "top_of_list2
    Thanks,
    Shankar

  • ALV Block list. Field name at user command not getting populated

    Hi All,
    I'm trying to use ALN block list. Field catalog is built using the REUSEALVMERGE FM.
    I've put hot spot on some fields. When I'm trying to capture the data when user clicks on the hotspot field the structure that comes in the user_command subroutine is not getting populated with the fieldname. But it is getting populated with the tabname and value is also coming properly.
    FORM user_command
              USING
              ucomm    TYPE sy-ucomm
                    selfield TYPE kkblo_selfield.
    What could be the possible reason?
    I appreciate your inputs.

    Hi Surya,
             Did you find the solution for this?
    Best Regards.

  • How to download a Block List based ALV report to PDF file?

    Hi Everyone,
    I need to display a report in block list alv format using REUSE_ALV_BLOCK_LIST_DISPLAY... I have done this. But my problem comes next.
    1. I need to download this report to a pdf file in the user given directory - in presentation server. How can I download this in PDF format.
    2. My report has TOP_OF_LIST and END_OF_LIST events. The body of the report contains a table with some material data. There should be 1 table for each material no. There are around 50 records for each material no. So I am looping at the material no. and calling REUSE_ALV_BLOCK_LIST_APPEND.
    Now my problem is that I should have only 20 records in each page. How can I determine this? How do I put a page-break?
    Please anyone help me.

    Hi Anwesha
    You can send the report output to spool using the IS_PRINT parameter of REUSE_ALV_BLOCK_LIST_DISPLAY FM. Then read the spool number generated and pass it to CONVERT_ABAPSPOOLJOB_2_PDF to get the pdf content which could be downloaded to presentation server.
    The splitting of records on count could be done by calling above method with different internal table filtered as per your requirement.
    Regards
    Ranganath

  • How to unblock bbm pin from block list

    How to unblock bbm pin from block list, i deleyed a bbm pin and close option for no block that pin, now how can i unblock that pin.

    How did you block the plugin?
    If you blocked it via Firefox and not via an extension then you should see a Lego block icon on the left end of the location bar that you can click.
    You can inspect and manage the permissions for the domain in the currently selected tab via these steps:
    *Click the "[[Site Identity Button|Site Identity Button]]" (globe/padlock) on the location bar
    *Click "More Information" to open "Tools > Page Info" with the Security tab selected
    *Go to the Permissions tab (Tools > Page Info > Permissions) to check the permissions for the domain in the currently selected tab
    If you blocked content via an extension like Adblock Plus then you need to click its toolbar icon to check what content is being blocked.

  • Block list

    I've sent out a number of emails this morning - most seem Ok (ie no message back) but some have been rejected with varieties of the following :
    - These recipients of your message have been processed by the mail server: [email protected]; Failed; 5.3.0 (other or undefined mail system status) Remote MTA mx2.hotmail.com: network error - SMTP protocol diagnostic: 550 OU-001 (BAY004-MC2F57) Unfortunately, messages from 65.20.0.123 weren't sent. Please contact your Internet service provider since part of their network is on our block list. You can also refer your provider to http://mail.live.com/mail/troubleshooting.aspx#errors.
    Following this through - my IP address has been blocked :
    Emails rejected by Outlook.com for policy reasons. If you are not an email/network admin please contact your Email/Internet Service Provider for help. For more information about this block and to request removal please go to: http://www.spamhaus.org.
    Taking the next step
    spamhaus  listed my Ip  - hence the block
    Trying the same path of looking up the block an hour later - spamhaus is not listing it
    What is going on??
    I'm just about to start resending the emails and see what happens
    Solved!
    Go to Solution.

    The same is happening to me havent been able to send any emails since 7am this morning so frustrating!!! 

  • What is the differenec between 'sap list viewer' and 'abap list viewer'

    hi
    what is the differenec between 'sap list viewer' and 'abap list viewer'

    Hi,
    There is no difference between them.SAP List Viewer (ALV) is the new name of the ABAP List Viewer (ALV).
    The SAP List Viewer unifies and simplifies the use of lists in the R/3 System. A uniform user interface and list format is available for all lists. This prevents redundant functions.
    The SAP List Viewer can be used to view both single-level lists and multilevel sequential lists.
    Single-level lists contain any number of lines that have no hierarchical relationship to each other.
    Multilevel sequential lists consist of any number of lines that have two hierarchical levels. Multilevel lists have header rows and item rows; the item rows are subordinate to the header rows. For each header row there can be any number of subordinate item rows.
    You can view subtotals and totals rows in both single-level lists and multilevel sequential lists
    From End User Point it is SAP LIST viewer , From Developer Point of View it is ALV .
    Check the Below Link
    http://help.sap.com/saphelp_nw04/helpdata/en/66/bc7aab43c211d182b30000e829fbfe/frameset.htm
    Regards,
    Satish

  • What file format can Media Services supports?

    Does Azure Media Services support file format such as rmvb or 3gp ,and so on.I want to know what file format I can play with Azure Media Services exactly,Thanks.

    The encoding for Windows Azure Media Services is currently based on Expression Encoder.  Expression Encoder's supported list is at
    http://msdn.microsoft.com/en-us/library/cc294687(v=Expression.40).aspx.  The formats that require QuickTime aren't currently supported.

  • ALV Block List Subtotal

    I have an ALV Block List and in the block list there are multiple currencies and amounts. When i use the subtotal button the expected output is to display calculated total amounts for each of the currencies.
    Whats actually happening is that the total is returning an X.
    Please note that i have used the field catalog field of cfieldname for the amount.
    I also noticed that this only happens when using ALV Block List but when the same thing is done in ALV List totals are being calculated by currency as expected.

    I am having the same problem. Does anyone have the answer?
    Regards,
    Greg

  • How can I see block list in skype for I phone5s

    How can I see block list in skype for I phone5s

    My point to the OP was that if he could see the "inboxes" in the mail app, he had to be at the main navigation point of the app. The main window of the mail app shows the Inboxes Heading and all of the inboxes for each mail account listed underneath and then the Heading - Accounts with all of the different email accounts listed under that heading.
    Maybe I explained my point incorrectly. You can view the list of messages in either Landscape or Portrait view.
    If you are in portrait view and there is no message selected, tap on whatever icon is shown directly below the iPad logo and the WiFi indicator and the drop down box pops up. Is that what you are asking?
    Once the drop down list pops up, you can navigate in portrait like you do in landscape. In the photo below, I tapped the Trash Icon and the drop down menu popped up. Then if I tap the AOL Account, the pop up takes me back to Mailboxes which shows the list of all of your inboxes and all of the accounts underneath that.

  • Is there no way to simply remove realplayer from the blocked list?

    ...My issue is someone disabled the realplayer extension / addon /
    plug in for some ungodly reasoning due to some block list.
    I'm over here cussing a blue streak at this choice of blocking,
    especially when I cant goto my "add ons" area and simply click
    "options/ turn on / enable etc" and what have you. Everything is greyed out thanks to an annoying block list filter.
    Which, from my understanding doesnt even apply to my version of firefox. I have had realplayer on here for YEARS and it has never once caused me any problems.
    And now because some one decides it causes issues with firefox version whatever, they're going to block it on a master block list for some reasoning? Tch.
    Is there NO WAY to simply remove realplayer from this said block list? I know I can go into about;config and disable the -whole- list, which I dont want to do.
    Cant someone make this thing a little more user friendly with the block list? Put some damn check boxes next to it so I can filter what I want.
    And if someone tells me to update something or another... -twitch-
    Everything had been working just fine for me until someone started playing with the ^%$#&ing block list.
    https://addons.mozilla.org/en-US/firefox/blocked/ <--- top two.

    It says: ''users can re-enable it from the Add-ons Manager if necessary''
    *https://addons.mozilla.org/en-US/firefox/blocked/i106
    *https://addons.mozilla.org/en-US/firefox/blocked/i107
    <blockquote>Why was it blocked?<br />
    The RealPlayer Browser Record extension is causing significant problems on Flash video sites like YouTube. This block automatically disables the add-on, but users can re-enable it from the Add-ons Manager if necessary.</blockquote>
    You can try to delete the files extensions.* (e.g. extensions.sqlite, extensions.ini, extensions.cache) and compatibility.ini in the Firefox profile folder to reset the extensions registry.
    *https://support.mozilla.org/kb/Profiles
    New files will be created when required.
    If you see disabled, not compatible, extensions in "Tools > Add-ons > Extensions" then click the Tools button at the left side of the Search Bar (or click the "Find Updates" button in older Firefox versions) to check if there is a compatibility update available.
    See "Corrupt extension files":
    *http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    *https://support.mozilla.org/kb/Unable+to+install+add-ons

  • What video formats are compatible with iMove '11

    I want to be able to know what video formats are compatible with iMovie '11. Not how to convert them, just a simple list of video formats I can use.

    Everything you wanted to know about iMovie but were afraid to ask:
    https://discussions.apple.com/community/ilife/imovie

  • What video formats are compatible in DVDSP??

    I have DVD Studio Pro 4 and I need to know what video formats are compatible in the program? I made an .m2v file but its too large to fit even on a DL DVD so I need to drop the .m2v file into Mpegstreamclip and convert it to something else and decrease the size so then I can drop it back into DVDSP and burn it. Any help with this? What are formats supported in DVDSP? Or, is there another way around my problem (too big of a file)?? Thanks!

    Can you make the audio AC3? That may put you under.
    Also keep in mind that if the 2 hour 2 minute movie is that large in file size, it means it probably was encoded at a high rate which can cause issues (you can try to re-encode the m2v in a couple of ways if needed)
    As to the story issues it sounds like you made a story accidently. Take a look here
    http://dvdstepbystep.com/layofland.php
    In the blue section towards the upper left, you will see the story listed in the track icon - delete the story and you should be good to go

  • Format Of LDAP Server List for Netmail

    Could anyone please explain what the format for using an ldap server for address lookups in Netmail. ie:
    servername:port/searchbase or ldap://servername:port/searchbase. I have tried a few but can't seem to get it to work. Everytime I try to add a server to this list, the Java Netmail will not allow me compose a message.. anyone have any ideas..

    Chris -
    Each entry is a comma separated list of name/value pairs in the following format: name="value". Quotation marks are not allowed in any value. The valid names and corresponding preference are:
    name the user-friendly name for the server; this is what the user sees in the NetMail Address Search tab.
    server the host name of the LDAP server. If a port is needed, use host:port.
    base the search base expression, e.g., ou=People
    searchin the list of attributes to search in, e.g., cn,givenname
    result the attribute to use as the result, defaults to mail
    filter additional search filters to be applied
    referral whether or not to follow referrals, true or false
    Only the server value is required, all others are filled in with defaults if necessary. A typical entry might be:
    name="Company Address Book", server="ourldap.xyz.com", base="dc=xyz,dc=com"
    Stephen

  • Conditional colour formatting in apex_item select list

    Hello all,
    I am having a select list in my tabular report created using apex_item.
    What user want is the colour formatting of this select list according to the condition.
    Say eg: A select list for departments, I want the departments with employees in different colour as compared to departments with no employees.
    Please help.
    Thanks
    Tauceef

    I've got a function in my package for this issue. Maybe it will gives you an idea how to solve this topic. The function is very similar to apex_item.select_list function, but there is a significant different. Displays values and returns values that are separated by two semicolons!
      FUNCTION get_select_list(p_idx NUMBER,
        p_value VARCHAR2 DEFAULT '',
        p_list_value VARCHAR2,
        p_attributes VARCHAR2 DEFAULT '',
        p_show_null VARCHAR2 DEFAULT '',
        p_null_value VARCHAR2 DEFAULT '',
        p_null_text VARCHAR2 DEFAULT '',
        p_item_id VARCHAR2 DEFAULT '') RETURN VARCHAR2 AS
        v_null VARCHAR2(4000);
        v_output VARCHAR2(4000);
        v_value VARCHAR2(4000);
        l_vc_fields htmldb_application_global.vc_arr2;
        l_vc_return_fields htmldb_application_global.vc_arr2;
      BEGIN
        l_vc_fields := HTMLDB_UTIL.string_to_table (p_list_value, ',');
        v_output := '<select name="f' || TRIM(TO_CHAR(p_idx, '09')) || '" ' || p_attributes;
        IF LENGTH(p_item_id) IS NOT NULL THEN
          v_output := v_output || ' id="' || p_item_id || '"';
        END IF;
        v_output := v_output || '>';
        v_null := '<option';
        IF LENGTH(p_null_value) IS NULL THEN
          v_null := v_null || ' value="%null%"';
        ELSE
          v_null := v_null || ' value="' || p_null_value || '"';
        END IF;
        v_null := v_null || '>';
        IF LENGTH(p_null_text) IS NULL THEN
          v_null := v_null || '%';
        ELSE
          v_null := v_null || p_null_text;
        END IF;
        v_null := v_null || '</option>';
        IF UPPER(p_show_null) != 'NO' THEN
          v_output := v_output || v_null;
        END IF;
        FOR i IN 1 .. l_vc_fields.COUNT LOOP
          l_vc_return_fields := HTMLDB_UTIL.string_to_table (l_vc_fields(i), ';;');
          v_output := v_output || '<option';
          IF l_vc_return_fields.COUNT = 2 THEN
            v_value := l_vc_return_fields(2);
          ELSE
            v_value := l_vc_return_fields(1);
          END IF;
          v_output := v_output || ' value="' || v_value || '"';
          IF v_value = p_value THEN
            v_output := v_output || ' selected="selected"';
          END IF;
          IF l_vc_return_fields.COUNT = 3 THEN
            v_output := v_output || ' ' || l_vc_return_fields(3);
          END IF;
          v_output := v_output || '>' || l_vc_return_fields(1) || '</option>';
        END LOOP;
        RETURN v_output || '</select>';
      END get_select_list;You can define three values for p_list_value instead of 2. The third value will be used as option attribute:
    SELECT
    my_package.get_select_list(
    1,
    '20',
    'ACCOUNTING;;10,RESEARCH;;20,SALES;;30;;style="background-color: red;",OPERATIONS;;40'
    ) liste FROM dual;function returns
    <select name="f01" >
    <option value="10">ACCOUNTING</option>
    <option value="20" selected="selected">RESEARCH</option>
    <option value="SALES" style="background-color: red;">SALES</option>
    <option value="40">OPERATIONS</option>
    </select>The next step is just to create a function, which provide the string for p_list_value.

Maybe you are looking for

  • Depot Sales  Excise

    Dear All, I am doing sales from depot. In Depot Sales order I have 10 line item. I create Delivery for 10 line item but i want to pass excise on first 4 line item only.But when i am creating excise invoice in J1IJ system showing error that excise sel

  • Printing A9 Envelopes on a J6480

    I have a J6480  all-in-one printer. I need to print A9 (6"x9") envelopes, about 50 at a time. I am unable to get the envelopes to print. Either the printing is very small and on one corner of the envelope, or  the envelope doesn't print and I get a p

  • Memleak cannot work when start the management server by ctrlhandler.act

    Hi, all I use ctrlhandler.act to start a management server on running system. when start the memleak detector, i got the error message on server output: [JRockit] ManagementServer started trend analysis java.lang.NullPointerException Continuing ... j

  • Help - General Error

    My Colleague is currently working through a time pressured edit and is experiencing an unusual General Error in FCP 4 A reliable system - Power Book G4, but using a brand new G-Tech Hard drive 250G 7200 Firewire. Footage captured fine (DV Pal) but wo

  • WWDC 2008 Choppy Video/Audio

    Hi there, I have tried several times over the last several days to watch the WWDC 2008 Keynote Address at different times of the day and night, but the video is way, way too choppy to watch. I am running QuickTime Pro 7.4.5 on my Core 2 Duo iMac runn