Category: Web
-
+
+
+
+
+
+
First, consult with AWS and get your credentials: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/using-credentials.html and http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-using-smtp-net.html Secondly, let’s make a more easily updatable emailSettings section (encrypt it later, see here if you need help): [sourcecode] <appSettings> <add key="MailFrom" value="donotreply@youremaildomain.com"/> <add key="MailTo" value="whoareyousendingto@theiremaildomain.com"/> <add key="MailHost" value=" email-smtp.youramazonseshost.com"/> <add key="MailPort" value="587"/> <add key="MailServerUserName" value="awsSESusername"/> <add key="MailServerPassword" value="awsSESpassword"/>…
-
+
+
+
+
+
+
A lot of you may be getting emails from your sys admins telling you about needing to protect yourself from the POODLE vulnerability. I wanted to post my response back to what I did to bring my servers into compliance. I used a tool called IISCrypto to place the server…
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
The Issue: After I had updated my .Net Core on my developer machine to a newer version I went to debug a web application I had and received this error: Could not load file or assembly ‘DotNetOpenAuth.Core, Version=4.1.0.0, Culture=neutral, PublicKeyToken=2780ccd10d57b246’ or one of its dependencies. The located assembly’s manifest definition…
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
I was recently upgrading a Ubuntu server from 12.04.5 LTS to 14.04.4 LTS and for the most part had a pleasant experience. I’m going to attempt to document my stepsĀ I used for the upgrade below and comment to any issues I found (and tips to fix). I ran the following…