Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/d56e83eee0895885b4cc50076c7093ed3c54404d You should set ROOT_URL correctly, otherwise the web may not work correctly.

email logging !wip

pull/2728/head
TidusJar 6 years ago
parent 93abab7a03
commit d56e83eee0

@ -83,15 +83,15 @@ namespace Ombi.Notifications
{
client.Authenticate(settings.Username, settings.Password);
}
//Log.Info("sending message to {0} \r\n from: {1}\r\n Are we authenticated: {2}", message.To, message.From, client.IsAuthenticated);
_log.LogDebug("sending message to {0} \r\n from: {1}\r\n Are we authenticated: {2}", message.To, message.From, client.IsAuthenticated);
await client.SendAsync(message);
await client.DisconnectAsync(true);
}
}
catch (Exception e)
{
//Log.Error(e);
throw new InvalidOperationException(e.Message);
_log.LogError(e, "Exception when attempting to send an email");
throw;
}
}

Loading…
Cancel
Save