I've got an IIS7 installation, on a Windows server 2008 R2 machine. I've also installed the SMTP service from IIS6, so that our coders can use CDOSYS to handle mail.
I have three sites.
www
newsite
test
And each of these has various forms on them.
If I set (in IIS7) the application pool identity of the three sites to 'NetworkService', and then the mailroot folder to permit NetworkService full access to the pickup folder, the forms work perfectly.
This means, for all intents and purposes, the forms are coded correctly and my issue is a permissions problem (as far as I can tell!).
Now, if I set the IIS identity to ApplicationPoolIdentity instead, and permissions as:
LOCAL
IIS AppPool\www
IIS AppPool\newsite
IIS AppPool\test
These are recognised in the security settings, but my forms fail with an error 500 (which is basically a write error).
Has anyone...