1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
/*
Mailx.cpp
Copyright (C) 2009 Zdenek Prikryl (zprikryl@redhat.com)
Copyright (C) 2009 RedHat inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "Mailx.h"
#include <stdio.h>
#include <sstream>
#include "DebugDump.h"
#define MAILX_COMMAND "/bin/mailx"
#define MAILX_SUBJECT "\"CrashCatcher automated bug report\""
CMailx::CMailx() :
m_sEmailFrom("user@localhost"),
m_sEmailTo("root@localhost"),
m_sParameters(""),
m_sAttachments("")
{}
void CMailx::SendEmail(const std::string& pText)
{
FILE* command;
std::string mailx_command = MAILX_COMMAND + m_sAttachments +
" " + m_sParameters +
" -s " + MAILX_SUBJECT +
" -r " + m_sEmailFrom + " " + m_sEmailTo;
command = popen(mailx_command.c_str(), "w");
if (!command)
{
throw std::string("CMailx::SendEmail: Can not execute mailx.");
}
if (fputs(pText.c_str(), command) == -1)
{
throw std::string("CMailx::SendEmail: Can not send data.");
}
pclose(command);
}
void CMailx::Report(const crash_report_t& pReport)
{
std::stringstream ss;
ss << "Duplicity check" << std::endl;
ss << "==================" << std::endl << std::endl;
ss << "UUID" << std::endl;
ss << "------------" << std::endl;
ss << pReport.m_sUUID << std::endl << std::endl;
ss << "Common information" << std::endl;
ss << "==================" << std::endl << std::endl;
ss << "Architecture" << std::endl;
ss << "------------" << std::endl;
ss << pReport.m_sArchitecture << std::endl << std::endl;
ss << "Kernel version" << std::endl;
ss << "--------------" << std::endl;
ss << pReport.m_sKernel << std::endl << std::endl;
ss << "Package" << std::endl;
ss << "-------" << std::endl;
ss << pReport.m_sPackage << std::endl << std::endl;
ss << "Executable" << std::endl;
ss << "----------" << std::endl;
ss << pReport.m_sExecutable << std::endl << std::endl;
ss << "CmdLine" << std::endl;
ss << "----------" << std::endl;
ss << pReport.m_sCmdLine << std::endl << std::endl;
ss << "Created report" << std::endl;
ss << "==============" << std::endl;
ss << "Text reports" << std::endl;
ss << "==============" << std::endl;
if (pReport.m_sTextData1 != "")
{
ss << "Text Data 1" << std::endl;
ss << "-----------" << std::endl;
ss << pReport.m_sTextData1 << std::endl << std::endl;
}
if (pReport.m_sTextData2 != "")
{
ss << "Text Data 2" << std::endl;
ss << "-----------" << std::endl;
ss << pReport.m_sTextData2 << std::endl << std::endl;
}
ss << "Binary reports" << std::endl;
ss << "==============" << std::endl;
ss << "See the attachment[s]" << std::endl;
if (pReport.m_sBinaryData1 != "")
{
m_sAttachments = " -a " + pReport.m_sBinaryData1;
}
if (pReport.m_sBinaryData2 != "")
{
m_sAttachments = " -a " + pReport.m_sBinaryData2;
}
SendEmail(ss.str());
}
void CMailx::SetSettings(const map_settings_t& pSettings)
{
if (pSettings.find("EmailFrom")!= pSettings.end())
{
m_sEmailFrom = pSettings.find("EmailFrom")->second;
}
if (pSettings.find("EmailTo")!= pSettings.end())
{
m_sEmailTo = pSettings.find("EmailTo")->second;
}
if (pSettings.find("Parameters")!= pSettings.end())
{
m_sParameters = pSettings.find("Parameters")->second;
}
}
|