show/hide this revision's text 5 added 7 characters in body

Thinking there must be a pure MAPI solution, I believe I've figured out how OutlookSpy does it.


The following code snippet, inserted after

printf("Created MAPI session\n");

in the example from KB194627, will show the Server DN.

LPPROFSECT lpProfSect;
hr = lpSess->OpenProfileSection((LPMAPIUID)pbGlobalProfileSectionGuid, NULL, 0, &lpProfSect);
if(SUCCEEDED(hr))
{
    LPSPropValue lpPropValue;
    hr = HrGetOneProp(lpProfSect, PR_PROFILE_HOME_SERVER_DN, &lpPropValue);
    if(SUCCEEDED(hr))
    {
        printf("Server DN: %s\n", lpPropValue->Value.lpszA);
        MAPIFreeBuffer(lpPropValue);
    }
    lpProfSect->Release();
}



Update:
There is the function HrGetServerDN in the EDK 5.5 source code, it extracts the Server DN from a given session's _PR_EMS_AB_HOME_MTA_. PR_EMS_AB_HOME_MTA. I'll try it if the other way turns out to be unreliable.

show/hide this revision's text 4 added 2 characters in body

Thinking there must be a pure MAPI solution, I believe I've figured out how OutlookSpy does it.


The following code snippet, inserted after

printf("Created MAPI session\n");

in the example from KB194627, will show the Server DN.

LPPROFSECT lpProfSect;
hr = lpSess->OpenProfileSection((LPMAPIUID)pbGlobalProfileSectionGuid, NULL, 0, &lpProfSect);
if(SUCCEEDED(hr))
{
    LPSPropValue lpPropValue;
    hr = HrGetOneProp(lpProfSect, PR_PROFILE_HOME_SERVER_DN, &lpPropValue);
    if(SUCCEEDED(hr))
    {
        printf("Server DN: %s\n", lpPropValue->Value.lpszA);
        MAPIFreeBuffer(lpPropValue);
    }
    lpProfSect->Release();
}



Update:
There is the function HrGetServerDN in the EDK 5.5 source code, it extracts the Server DN from a given session's PR_EMS_AB_HOME_MTA. _PR_EMS_AB_HOME_MTA_. I'll try it if the other way turns out to be unreliable.

show/hide this revision's text 3 added 409 characters in body

Thinking there must be a pure MAPI solution, I believe I've figured out how OutlookSpy does it.


The following code snippet, inserted after

printf("Created MAPI session\n");

in the example from KB194627, will show the "Server DN"DN.

LPPROFSECT lpProfSect;
hr = lpSess->OpenProfileSection((LPMAPIUID)pbGlobalProfileSectionGuid, NULL, 0, &lpProfSect);
if(SUCCEEDED(hr))
{
    LPSPropValue lpPropValue;
    hr = HrGetOneProp(lpProfSect, PR_PROFILE_HOME_SERVER_DN, &lpPropValue);
    if(SUCCEEDED(hr))
    {
        printf("Server DN: %s\n", lpPropValue->Value.lpszA);
        MAPIFreeBuffer(lpPropValue);
    }
    lpProfSect->Release();
}



Update:
There is the function HrGetServerDN in the EDK 5.5 source code, it extracts the Server DN from a given session's PR_EMS_AB_HOME_MTA. I'll try it if the other way turns out to be unreliable.

show/hide this revision's text 2 removed unnecessary code
show/hide this revision's text 1