-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMailConfig.cpp
More file actions
374 lines (307 loc) · 7.05 KB
/
Copy pathMailConfig.cpp
File metadata and controls
374 lines (307 loc) · 7.05 KB
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
#include "MailConfig.h"
#include <sstream>
#include <stdexcept>
#include <algorithm>
#include <utility>
namespace OPI
{
MailConfig::MailConfig(const string &aliasfile, string domainfile)
: MailMapFile(aliasfile), domainfile(std::move(domainfile))
{
this->ReadConfig();
}
void MailConfig::ReadConfig()
{
MailMapFile::ReadConfig();
// Read domains since it could be that we have domains without users(??)
list<string> dm = File::GetContent( this->domainfile);
for( const string& line: dm)
{
if( this->config.find( line ) == this->config.end() )
{
this->config[line] = map<string,string>();
}
}
}
void MailConfig::AddDomain(const string &domain)
{
if( ! this->hasDomain(domain) )
{
this->config[domain] = map<string,string>();
}
}
void MailConfig::DeleteDomain(const string &domain)
{
if( ! this->hasDomain( domain ) )
{
throw runtime_error("Domain not found");
}
this->config.erase(domain);
}
list<string> MailConfig::GetDomains()
{
list<string> domains;
for(const auto& dom: this->config)
{
domains.push_back(dom.first);
}
return domains;
}
void MailConfig::WriteConfig()
{
MailMapFile::WriteConfig();
stringstream domains;
for(const auto& entries: this->config )
{
domains << entries.first << endl;
}
if( this->domainfile != "" )
{
File::Write(this->domainfile, domains.str(), File::UserRW | File::GroupRead );
}
}
MailConfig::~MailConfig() = default;
/*
* Implementation of mailmapfile
*/
MailMapFile::MailMapFile(string aliasfile): aliasesfile(std::move(aliasfile))
{
}
void MailMapFile::ReadConfig()
{
this->config.clear();
// Read aliases
list<string> al = File::GetContent( this->aliasesfile);
for( string line: al)
{
line = String::Trimmed(line," ");
// Skip empty lines and comments
if( line.size() == 0 || line[0]=='#' )
{
continue;
}
list<string> parts = String::Split(line, "\t");
if( parts.size() == 2 )
{
string email=parts.front();
string path =parts.back();
list<string> mailparts = String::Split(email, "@");
list<string> pathparts = String::Split(path,"/",2);
if( mailparts.size() == 2 && pathparts.size() == 2 )
{
this->config[mailparts.back()][mailparts.front()] = pathparts.front();
}
else
{
throw runtime_error("Malformed syntax entry in alias file");
}
}
else
{
throw runtime_error("Malformed syntax entry in alias file");
}
}
}
void MailMapFile::WriteConfig()
{
stringstream aliases;
for(const auto& entries: this->config )
{
for(const auto& users: entries.second)
{
aliases << users.first<<"@"<<entries.first<<"\t"<<users.second<<"/mail/"<<endl;
}
}
if( this->aliasesfile != "" )
{
File::Write(this->aliasesfile, aliases.str(), File::UserRW | File::GroupRead );
}
}
void MailMapFile::ChangeDomain(const string &from, const string &to)
{
if( from =="" || to == "" )
{
throw runtime_error("Missing argumet");
}
if( this->config.find(from) == this->config.end() )
{
throw runtime_error("Domain not found");
}
if( this->config.find( to ) != this->config.end() )
{
throw runtime_error("Target domain exists");
}
map<string,string> domusers = this->config[from];
this->config.erase(from);
this->config[to] = domusers;
}
bool MailMapFile::hasAddress(const string &domain, const string &address)
{
return this->hasDomain(domain) && ( this->config[domain].find(address) != this->config[domain].end() );
}
bool MailMapFile::hasDomain(const string &domain)
{
return this->config.find(domain) != this->config.end();
}
void MailMapFile::SetAddress(const string &domain, const string &address, const string &user)
{
this->config[domain][address]=user;
}
void MailMapFile::DeleteAddress(const string &domain, const string &address)
{
if( ! this->hasAddress(domain, address) )
{
throw runtime_error("Address not found");
}
this->config[domain].erase(address);
// Last address?
if( this->config[domain].empty() )
{
this->config.erase(domain);
}
}
list<tuple<string, string> > MailMapFile::GetAddresses(const string &domain)
{
if( ! this->hasDomain(domain) )
{
throw runtime_error("No such domain");
}
list<tuple<string, string> > adresses;
for(const auto& address: this->config[domain] )
{
adresses.emplace_back(address.first, address.second);
}
return adresses;
}
tuple<string, string> MailMapFile::GetAddress(const string &domain, const string &address)
{
return make_tuple(address,this->config[domain][address]);
}
MailMapFile::~MailMapFile() = default;
MailAliasFile::MailAliasFile(string file): filename(std::move(file))
{
this->ReadConfig();
}
void MailAliasFile::ReadConfig()
{
this->config.clear();
// Read aliases
list<string> lines = File::GetContent( this->filename);
for( string line: lines)
{
line = String::Trimmed(line," ");
// Skip empty lines and comments
if( line.size() == 0 || line[0]=='#' )
{
continue;
}
list<string> parts = String::Split(line, "\t");
if( parts.size() == 2 )
{
string email=parts.front();
string users =parts.back();
list<string> userparts = String::Split(users,",");
for( const auto& user: userparts)
{
this->config[email].push_back(user);
}
}
else
{
throw runtime_error("Malformed syntax entry in alias file");
}
}
}
void MailAliasFile::WriteConfig()
{
stringstream aliases;
for(const auto& entries: this->config )
{
aliases << entries.first << "\t";
bool first = true;
for(const auto& user: entries.second)
{
if( ! first )
{
aliases << ",";
}
first = false;
aliases << user;
}
aliases<<endl;
}
if( this->filename != "" )
{
File::Write(this->filename, aliases.str(), File::UserRW | File::GroupRead );
}
}
list<string> MailAliasFile::GetUsers(const string &alias)
{
if( this->config.find( alias ) == this->config.end() )
{
throw runtime_error( "No such alias" );
}
return this->config[alias];
}
list<string> MailAliasFile::GetAliases()
{
list<string> ret;
for( const auto& alias: this->config )
{
ret.push_back( alias.first );
}
return ret;
}
void MailAliasFile::AddUser(const string &alias, const string &user)
{
if( this->config.find(alias) != this->config.end() )
{
if( find( this->config[alias].begin(), this->config[alias].end(), user) != this->config[alias].end() )
{
// User exists, nothing needs to be done
return;
}
}
this->config[alias].push_back(user);
}
void MailAliasFile::RemoveUser(const string &alias, const string &user)
{
if( this->config.find(alias) == this->config.end() )
{
throw runtime_error("No such alias");
}
if( find( this->config[alias].begin(), this->config[alias].end(), user) == this->config[alias].end() )
{
throw runtime_error("No such user");
}
list<string> newlist;
for( const string& auser: this->config[alias] )
{
if( user != auser)
{
newlist.push_back( auser );
}
}
if( newlist.size() == 0)
{
this->config.erase(alias);
}
else
{
this->config[alias] = newlist;
}
}
void MailAliasFile::Dump()
{
for( const auto& alias: this->config )
{
cout << alias.first << ":";
for( const auto& user: alias.second )
{
cout << " "<< user;
}
cout << endl;
}
}
MailAliasFile::~MailAliasFile() = default;
} //End namespace