Hi,
"Contact Us" form doesn't work (https://www.nuget.org/policies/Contact). I see "Sorry, an error occurred while processing your request.
Error: Oh no, we broke something!" message after a click on "Contact" button.
Hello,
I was able to successfully send a support request using Contact Us page. Did you put anything unusual in your message/title, for example characters not in the English language, or was your message/title extremely long?
I would suggest trying to send your message again, and if it fails, feel free to send the message to [email protected] directly (but include your account name).
Hi, I was able to send after removing ">", "<" signs from message body. Thank you for quick response and helpful suggestions.
@scottbommarito My guess: Because of the ASP.NET Request Validation all requests that contain < > will receive such an error. [AllowHtml] should fix it (like it did here https://github.com/NuGet/NuGetGallery/pull/3388)
Maybe someone should check the following forms if < > are possible:
At least these are the forms where I would think it is safe to insert < >
It this something for an up-for-grabs issue?
@robertmuehsig That sounds precisely like the issue!
I'm going to reopen this issue, rename it, and mark it as up-for-grabs.
Yep, AllowHtml seems to have done the trick.