3

Has anyone been able to get a Local NuGet Gallery running, and able to send the account confirmation email? I've been able to get the server functioning fine on a local SQLExpress DB, but I can't seem to get the emails to send from the system.

They use some library called anglicangeek.markdownmailer which I can't seem to locate any information about.

If anyone has a tip, I'd love to hear it!

farina
  • 3,486
  • 6
  • 32
  • 44
  • 1
    Did you configure the email settings in the database? – Calvin Allen Aug 16 '12 at 01:04
  • Ahh...no? Where exactly would the settings be located in the DB? I didn't read anything about configuring it during setup. – farina Aug 16 '12 at 21:24
  • 1
    There is a table, without looking, I *think* it is called "GallerySettings". – Calvin Allen Aug 17 '12 at 01:21
  • I found it last night...I entered in my open relay server, but unfortunately it still won't send email :(. It never generates a message in the EmailMessages table either...I would expect one to be there. Thanks again! – farina Aug 17 '12 at 17:24
  • 1
    You ever figure this one out? I'm setting up a local NuGet Gallery and it is not trivial at all. – Issa Fram Aug 14 '13 at 14:13
  • 1
    No, I gave up on the NuGet Gallery completely. That thing is a trainwreck! It's a system that should be so insanely simple, but yet you end up with this super complex layered approach. We went back to using a file share and just scrapped the idea of hosting an internal gallery :(. – farina Aug 20 '13 at 05:00

1 Answers1

1

Find, uncomment, and add value based on format explained in the web.config of the NugetGallery

<add key="Gallery.SmtpUri" value="" /> 
nathanc
  • 11
  • 1