At 5:09 PM -0700 4/18/02, Kenneth Porter wrote: >Where can one find documentation on this? How would an admin deploy >this?
I'm afraid documentation on this is hard to find. Here's what I have: #define IDS_DISABLE_SAVE_PASSWORD 201 A boolean value that if turned on (i.e. "1") will not allow the user to turn on the Save Password setting #define IDS_MIN_MAIL_CHECK_INTERVAL 209 An integer value that enforces a minimum all check interval in minutes. #define IDS_DISABLE_EDIT_RETURN_ADDRESS 210 A boolean value that if turned on (i.e. "1") will disable editing the Return Address in the Options dialog. #define IDS_REQUIRE_POP_LOGIN_TO_SEND 211 A boolean value that if turned on (i.e. "1") will require the user to check mail before allowing it to send mail. This will ensure that the X-Sender: header doesn't have "(Unverified)" in it. You would need to create a resource-only DLL, so it requires a tool that can edit resources. Microsoft's Visual Studio has such a resource editor. You can make a copy of the existing Eudora32.dll resource-only DLL, remove the resources in it, and then add the specific string resources above that you are wanting to change (name the resource the same as what is defined above, and make sure it is a string resource). Name the file whatever you want, but give it a .EPI extension (Eudora Plug-In). Place the .EPI file either in the same directory as Eudora.exe or in the user's mail directory to take affect.
