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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
/*
kmime_message.cpp
KMime, the KDE internet mail/usenet news message library.
Copyright (c) 2001 the KMime authors.
See file AUTHORS for details
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.
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, US
*/
#include "kmime_message.h"
using namespace KMime;
namespace KMime {
Message::Message()
{
s_ubject.setParent(this);
d_ate.setParent(this);
}
Message::~Message() {}
void Message::parse()
{
Content::parse();
TQCString raw;
if( !(raw=rawHeader(s_ubject.type())).isEmpty() )
s_ubject.from7BitString(raw);
if( !(raw=rawHeader(d_ate.type())).isEmpty() )
d_ate.from7BitString(raw);
}
void Message::assemble()
{
Headers::Base *h;
TQCString newHead="";
//Message-ID
if( (h=messageID(false))!=0 )
newHead+=h->as7BitString()+"\n";
//From
h=from(); // "From" is mandatory
newHead+=h->as7BitString()+"\n";
//Subject
h=subject(); // "Subject" is mandatory
newHead+=h->as7BitString()+"\n";
//To
if( (h=to(false))!=0 )
newHead+=h->as7BitString()+"\n";
//Cc
if( (h=cc(false))!=0 )
newHead+=h->as7BitString()+"\n";
//Reply-To
if( (h=replyTo(false))!=0 )
newHead+=h->as7BitString()+"\n";
//Date
h=date(); // "Date" is mandatory
newHead+=h->as7BitString()+"\n";
//References
if( (h=references(false))!=0 )
newHead+=h->as7BitString()+"\n";
//Organization
if( (h=organization(false))!=0 )
newHead+=h->as7BitString()+"\n";
//UserAgent
if( (h=userAgent(false))!=0 )
newHead+=h->as7BitString()+"\n";
//Mime-Version
newHead+="MIME-Version: 1.0\n";
//Content-Type
newHead+=contentType()->as7BitString()+"\n";
//Content-Transfer-Encoding
newHead+=contentTransferEncoding()->as7BitString()+"\n";
//X-Headers
int pos=h_ead.find("\nX-");
if(pos>-1) //we already have some x-headers => "recycle" them
newHead+=h_ead.mid(pos+1, h_ead.length()-pos-1);
else if(h_eaders && !h_eaders->isEmpty()) {
for(h=h_eaders->first(); h; h=h_eaders->next()) {
if( h->isXHeader() && (strncasecmp(h->type(), "X-KNode", 7)!=0) )
newHead+=h->as7BitString()+"\n";
}
}
h_ead=newHead;
}
void Message::clear()
{
s_ubject.clear();
d_ate.clear();
f_lags.clear();
Content::clear();
}
Headers::Base* Message::getHeaderByType(const char *type)
{
if(strcasecmp("Subject", type)==0) {
if(s_ubject.isEmpty()) return 0;
else return &s_ubject;
}
else if(strcasecmp("Date", type)==0){
if(d_ate.isEmpty()) return 0;
else return &d_ate;
}
else
return Content::getHeaderByType(type);
}
void Message::setHeader(Headers::Base *h)
{
bool del=true;
if(h->is("Subject"))
s_ubject.fromUnicodeString(h->asUnicodeString(), h->rfc2047Charset());
else if(h->is("Date"))
d_ate.setUnixTime( (static_cast<Headers::Date*>(h))->unixTime() );
else {
del=false;
Content::setHeader(h);
}
if(del) delete h;
}
bool Message::removeHeader(const char *type)
{
if(strcasecmp("Subject", type)==0)
s_ubject.clear();
else if(strcasecmp("Date", type)==0)
d_ate.clear();
else
return Content::removeHeader(type);
return true;
}
} // namespace KMime
|