X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fsend_problem_report_job.cc;h=d27609f0bdd715aac50fff167e7dbbaf40b2c042;hb=95c48153421b1a6e0d7ca6cf5e67cd7623c03dc7;hp=c8b577ca774ae9d2a9b742c96e37d4e8e2f5a0de;hpb=fc7b0336a32ec10af9561f351dba4787ca5e0dd2;p=dcpomatic.git diff --git a/src/lib/send_problem_report_job.cc b/src/lib/send_problem_report_job.cc index c8b577ca7..d27609f0b 100644 --- a/src/lib/send_problem_report_job.cc +++ b/src/lib/send_problem_report_job.cc @@ -36,7 +36,10 @@ using std::string; using std::list; using boost::shared_ptr; -/** @param film Film thta the problem is with, or 0 */ +/** @param film Film thta the problem is with, or 0. + * @param from Email address to use for From: + * @param summary Summary of the problem. + */ SendProblemReportJob::SendProblemReportJob ( shared_ptr film, string from, @@ -49,6 +52,11 @@ SendProblemReportJob::SendProblemReportJob ( } +SendProblemReportJob::~SendProblemReportJob () +{ + stop_thread (); +} + string SendProblemReportJob::name () const { @@ -98,7 +106,7 @@ SendProblemReportJob::run () to.push_back ("carl@dcpomatic.com"); Emailer emailer (_from, to, "DCP-o-matic problem report", body); - emailer.send ("main.carlh.net", 2525); + emailer.send ("main.carlh.net", 2525, EMAIL_PROTOCOL_STARTTLS); set_progress (1); set_state (FINISHED_OK);