ravibpatel / CrashReporter.NET

Send crash reports of your classic desktop application developed using .NET Framework directly to your mail's inbox with full exception report, stack trace and screenshot.
MIT License
185 stars 74 forks source link

[Q] Is drdump guid needed? #25

Closed DjordjeMandic closed 4 years ago

DjordjeMandic commented 5 years ago

I think that i didnt specify any guid for drdump and im still receiving crash reports over there, basically only specified email. How come?

ravibpatel commented 5 years ago

@DjordjeMandic If you don't specify GUID then it will still use DrDump to send you an email. If you don't want to send reports using DrDump then you can to set up your SMTP details and set AnalyzeWithDoctorDump to false.

var reportCrash = new ReportCrash
{
    AnalyzeWithDoctorDump = false,
    SmtpHost = "smtp.gmail.com",
    Port = 587
    EnableSSL = true,
    UserName = "Your Gmail Account Email",
    Password = "Your Gmail Account Password",
        ToEmail = "Email address where you want receive crash reports",
    FromEmail = "Your Gmail Account Email or Email Alias",
    DeveloperMessage = developerMessage,
};
DjordjeMandic commented 5 years ago

@ravibpatel Im receiving mails from drdump but crash list on drdump on their website also receives full dumps without guid specified. Does drdump handle mail as guid? I set ToEmail to same email address that i use to login in drdump acc. image see? image No guid specified anywhere in program.

Edit: i have only one application on drdump website

ravibpatel commented 5 years ago

I haven't designed the DrDump related functionality. It was added by the author of DrDump as a pull request. So I am not sure if it can use Email as GUID or not. If you want to disable DrDump related functionality then you can set AnalyzeWithDoctorDump to false.

EddieDemon commented 4 years ago

@ravibpatel - Issue should be closed.