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
|
/*
kmime_newsarticle.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_newsarticle.h"
using namespace KMime;
namespace KMime {
void NewsArticle::parse()
{
Message::parse();
TQCString raw;
if( !(raw=rawHeader(l_ines.type())).isEmpty() )
l_ines.from7BitString(raw);
}
void NewsArticle::assemble()
{
Headers::Base *h;
TQCString newHead="";
//Message-ID
if( (h=messageID(false))!=0 )
newHead+=h->as7BitString()+"\n";
//Control
if( (h=control(false))!=0 )
newHead+=h->as7BitString()+"\n";
//Supersedes
if( (h=supersedes(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";
//Newsgroups
if( (h=newsgroups(false))!=0 )
newHead+=h->as7BitString()+"\n";
//Followup-To
if( (h=followUpTo(false))!=0 )
newHead+=h->as7BitString()+"\n";
//Reply-To
if( (h=replyTo(false))!=0 )
newHead+=h->as7BitString()+"\n";
//Mail-Copies-To
if( (h=mailCopiesTo(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";
//Lines
h=lines(); // "Lines" is mandatory
newHead+=h->as7BitString()+"\n";
//Organization
if( (h=organization(false))!=0 )
newHead+=h->as7BitString()+"\n";
//User-Agent
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);
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 NewsArticle::clear()
{
l_ines.clear();
Message::clear();
}
Headers::Base * NewsArticle::getHeaderByType(const char * type)
{
if(strcasecmp("Lines", type)==0) {
if(l_ines.isEmpty()) return 0;
else return &l_ines;
} else
return Message::getHeaderByType(type);
}
void NewsArticle::setHeader(Headers::Base *h)
{
bool del=true;
if(h->is("Lines"))
l_ines.setNumberOfLines( (static_cast<Headers::Lines*>(h))->numberOfLines() );
else {
del=false;
Message::setHeader(h);
}
if(del) delete h;
}
bool NewsArticle::removeHeader(const char *type)
{
if(strcasecmp("Lines", type)==0)
l_ines.clear();
else
return Message::removeHeader(type);
return true;
}
} // namespace KMime
|