Running VopMail on IIS 6

I got a question for a particular 3rd party software on IIS the other day.

Question:

I have been running VopMail 5.3 (vircom.com) on a Win2k IIS5 system since 2002 until yesterday when the server HD failed. I dumped the system to a standby server with Win2k3 IIS6 and was back up in about 30 minutes all except for the Web Admin Tool.

Per instructions I created the necessary website and gave the folders the necessary permissions R,W,Exec. I then added the webmailmgr.dll to the Web Service Extensions with Allow.

The instructions also recommend that the Enviroment variable PATH contain the path to the install folder where the rest of the dll's and exe's are so that the webmailmgr.dll can find them.

So now I have the Path, the folder permissions and I set the IIS access to Scripts and Executables as directed.

All I get is HTTP Error 500 - Internal server error.

This one is kicking my butt. (Vircom refused to help stating that the software is no longer supported.) So I am on my own and need a little help, please.

Answer:

First, I hope you realize that this issue ultimately needs to be solved by the product's vendor. The company needs to provide the following information:

  1. Is the product under question supported on Windows Server 2003 and IIS 6.0
  2. If #1 is yes, what are the configuration steps necessary?

If the product is not supported on Windows Server 2003, then I hope that you accept my apologies that it would be rather unfair for me to be substitute product support for arbitrary applications.

I tried searching for the "instructions" you mentioned, but I did not find such information in any document on their website that contained the words "IIS" and "VOPMail". So, absent any official information/instructions, it is really hard to distinguish whether what you are trying to do is even possible, and if so, how.

From the documentation I did locate ( https://kbase.vircom.com/Kbase32/default.asp?id=765&Lang=1 ) as well as your descriptions, I can give the following generic advice:

  1. I see no indication of instructions for "webmailmgr.dll" as an ISAPI, so I do not think configuring a Web Service Extension helps. I only saw instructions indicating that the old and new web admin tool uses ASP/ASP.Net pages.
  2. Environment variable modifications, such as the PATH variable, do not take effect in IIS and its applications until you reboot the server. This is because services.exe does not refresh the environment when it restarts IIS as a Windows Service.
  3. I saw a lot of work-arounds for this company's software that either require you to regsvr32 some DLL or to change IIS application pool to run as LocalSystem so that things will "work", so you may want to create a special application pool for your web admin tool and run it as LocalSystem

I would never recommend running the entire web server as LocalSystem because that introduces an unnecessary security risk. You really do not want to run software that requires running as LocalSystem without good reason - and it looks like the newer web mail tool interface is in ASP.Net and do not require LocalSystem (it works with the default, secure Network Service identity). So, you may want to consider moving forward to a more secure solution that is supported by the vendor.

Good Luck.

//David