summaryrefslogtreecommitdiff
path: root/src/app/Settings/Settings.cpp
blob: 2e0fbcf2c004d412b9d90045f4acabfa7d6f7ea6 (plain)
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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
#include "Settings.h"
#include <QFile>
#include "SettingsNames.h"
#include "app/Accounts/AccountUtils.h"
namespace Dekko
{
namespace Settings
{

const QString Id::globalId = QStringLiteral("global");

AbstractSettings::AbstractSettings(QObject *parent) :
    QObject(parent), m_settings(new QSettings())
{
}

bool AbstractSettings::save()
{
    emit error(QStringLiteral("Saving settings is not supported by AbstractSettings. And should be done in the subclass"));
    return false;
}

bool AbstractSettings::reload()
{
    emit error(QStringLiteral("Reloading settings is not supported by AbstractSettings. And should be done in the subclass"));
    return false;
}

QString AbstractSettings::accountId() const
{
    return m_accountId;
}

void AbstractSettings::setAccountId(const QString &id)
{
    if (m_accountId == id) {
        return;
    }
    m_accountId = id;
    emit accountIdChanged();
}

QSettings *AbstractSettings::settings() const
{
    return m_settings;
}

void AbstractSettings::setSettings(QSettings *settings)
{
    m_settings = settings;
    emit settingsChanged();
}

AccountProfile::AccountProfile(QObject *parent) :
    AbstractSettings(parent)
{
    connect(this, SIGNAL(accountIdChanged()), this, SLOT(reload()));
}

QString AccountProfile::name() const
{
    return m_name;
}

void AccountProfile::setName(const QString &name)
{
    if (m_name == name) {
        return;
    }
    m_name = name;
    emit nameChanged();
}

QString AccountProfile::organization() const
{
    return m_organization;
}

void AccountProfile::setOrganization(const QString &organization)
{
    if (m_organization == organization) {
        return;
    }
    m_organization = organization;
    emit organizationChanged();
}

QString AccountProfile::description() const
{
    return m_description;
}

void AccountProfile::setDescription(const QString &description)
{
    if (m_description == description) {
        return;
    }
    m_description = description;
    emit descriptionChanged();
}

QString AccountProfile::displayName() const
{
    return !m_organization.isEmpty() ? m_description + QStringLiteral(" (%1)").arg(m_organization) : m_description;
}

QString AccountProfile::domain() const
{
    return getDomainFromEmailAddress();
}

QUrl AccountProfile::domainIcon() const
{
    return Dekko::Accounts::AccountUtils::getDomainIcon(m_settings->value(Dekko::SettingsNames::imapUserKey, QVariant()).toString());
}

bool AccountProfile::save()
{
    if (m_accountId.isEmpty()) {
        emit error(QStringLiteral("No account id has been set. Cannot save without one"));
        return false;
    }
    if (!m_settings->group().isEmpty()) {
        m_settings->endGroup();
    }
    // We only do single level grouping in the settings file
    // If the QSettings::endGroup() didn't kick us back to root
    // then were screwed, so fail!!
    Q_ASSERT(m_settings->group().isEmpty());
    m_settings->beginGroup(m_accountId);
    m_settings->setValue(Dekko::SettingsNames::profileName, m_name);
    m_settings->setValue(Dekko::SettingsNames::profileDescription, m_description);
    m_settings->setValue(Dekko::SettingsNames::profileOrganization, m_organization);
    // Try to make sure we always drop back to root group when done
    m_settings->endGroup();
    // ensure we sync this back to the settings file so other instances see these new values on reload
    m_settings->sync();
    return true;
}

bool AccountProfile::reload()
{
    if (m_accountId.isEmpty()) {
        emit error(QStringLiteral("No account id has been set. Cannot save without one"));
        return false;
    }
    if (!m_settings->group().isEmpty()) {
        m_settings->endGroup();
    }
    // We only do single level grouping in the settings file
    // If the QSettings::endGroup() didn't kick us back to root
    // then were screwed, so fail!!
    Q_ASSERT(m_settings->group().isEmpty());
    m_settings->beginGroup(m_accountId);
    setName(m_settings->value(Dekko::SettingsNames::profileName).toString());
    setDescription(m_settings->value(Dekko::SettingsNames::profileDescription).toString());
    setOrganization(m_settings->value(Dekko::SettingsNames::profileOrganization).toString());
    m_settings->endGroup();
    return true;
}

QString AccountProfile::getDomainFromEmailAddress() const
{
    QString addr = m_settings->value(Dekko::SettingsNames::imapUserKey, QVariant()).toString();
    QString domain;
    if (addr.contains(QStringLiteral("@"), Qt::CaseInsensitive)) {
        domain = addr.split(QStringLiteral("@"))[1];
    } else {
        domain = QString();
    }
    return domain;
}

ImapSettings::ImapSettings(QObject *parent) :
    AbstractSettings(parent), m_port(0), m_connectionMethod(ConnectionMethod::NONE),
    m_needsNetwork(true), m_useSysProxy(false), m_authType(AuthType::PLAIN), m_filterSubscribed(false)
{
    // We want to reload when ever the accountId changed
    connect(this, SIGNAL(accountIdChanged()), this, SLOT(reload()));
    connect(this, SIGNAL(portChanged()), this, SLOT(maybeShowPortWarning()));
}

QString ImapSettings::server() const
{
    return m_server;
}

void ImapSettings::setServer(const QString &server)
{
    if (m_server == server) {
        return;
    }
    m_server = server;
    emit serverChanged();
}

int ImapSettings::port() const
{
    return m_port;
}

void ImapSettings::setPort(const int &port)
{
    if (m_port == port) {
        return;
    }
    m_port = port;
    emit portChanged();
}

QString ImapSettings::username() const
{
    return m_username;
}

void ImapSettings::setUsername(const QString &username)
{
    if (m_username == username) {
        return;
    }
    m_username = username;
    emit usernameChanged();
}

ImapSettings::ConnectionMethod ImapSettings::connectionMethod() const
{
    return m_connectionMethod;
}

void ImapSettings::setConnectionMethod(const ImapSettings::ConnectionMethod method)
{
    if (m_connectionMethod == method) {
        return;
    }
    m_connectionMethod = method;
    emit connMethodChanged();
}

ImapSettings::AuthType ImapSettings::authenticationMethod() const
{
    return m_authType;
}

void ImapSettings::setAuthenticationMethod(const ImapSettings::AuthType type)
{
    if (type == m_authType) {
        return;
    }
    m_authType = type;
    emit authenticationMethodChanged();
}

QString ImapSettings::portWarning() const
{
    return m_portWarning;
}

QByteArray ImapSettings::publicKey() const
{
    return m_publicKey;
}

void ImapSettings::setPublicKey(const QByteArray &key)
{
    if (key == m_publicKey) {
        return;
    }
    m_publicKey = key;
    emit publicKeyChanged();
}

bool ImapSettings::needsNetwork() const
{
    return m_needsNetwork;
}

void ImapSettings::setNeedsNetwork(const bool needsNetwork)
{
    if (needsNetwork == m_needsNetwork) {
        return;
    }
    m_needsNetwork = needsNetwork;
    emit needsNetworkChanged();
}

bool ImapSettings::useSystemProxy() const
{
    return m_useSysProxy;
}

void ImapSettings::setUseSystemProxy(const bool useSysProxy)
{
    if (useSysProxy == m_useSysProxy) {
        return;
    }
    m_useSysProxy = useSysProxy;
    emit useSystemProxyChanged();
}

QStringList ImapSettings::imapExtensionBlackList() const
{
    return m_extBlackList;
}

void ImapSettings::setImapExtensionBlackList(const QStringList &extList)
{
    if (extList == m_extBlackList) {
        return;
    }
    m_extBlackList = extList;
    emit extensionBlackListChanged();
}

bool ImapSettings::filterSubscribed() const
{
    return m_filterSubscribed;
}

bool ImapSettings::save()
{
    if (m_accountId.isEmpty()) {
        emit error(QStringLiteral("No account id has been set. Cannot save without one"));
        return false;
    }
    if (!m_settings->group().isEmpty()) {
        m_settings->endGroup();
    }
    // We only do single level grouping in the settings file
    // If the QSettings::endGroup() didn't kick us back to root
    // then were screwed, so fail!!
    Q_ASSERT(m_settings->group().isEmpty());
    m_settings->beginGroup(m_accountId);
    m_settings->setValue(Dekko::SettingsNames::imapHostKey, m_server);
    m_settings->setValue(Dekko::SettingsNames::imapUserKey, m_username);
    m_settings->setValue(Dekko::SettingsNames::imapPortKey, m_port);
    m_settings->setValue(Dekko::SettingsNames::imapFilterSubscribed, m_filterSubscribed);
    switch (m_connectionMethod) {
    case ConnectionMethod::INVALID:
        break;
    case ConnectionMethod::NONE:
    case ConnectionMethod::STARTTLS:
        m_settings->setValue(Dekko::SettingsNames::imapMethodKey, Dekko::SettingsNames::methodTCP);
        m_settings->setValue(Dekko::SettingsNames::imapStartTlsKey, m_connectionMethod == ConnectionMethod::STARTTLS);
        break;
    case ConnectionMethod::SSL:
        m_settings->setValue(Dekko::SettingsNames::imapMethodKey, Dekko::SettingsNames::methodSSL);
        // Trying to communicate the fact that this is going to be an encrypted connection, even though
        // that settings bit is not actually used
        m_settings->setValue(Dekko::SettingsNames::imapStartTlsKey, true);
        break;
    case ConnectionMethod::PROCESS:
        m_settings->setValue(Dekko::SettingsNames::imapMethodKey, Dekko::SettingsNames::methodProcess);
        break;
    }

    switch (m_authType) {
    case AuthType::PLAIN:
        m_settings->setValue(Dekko::SettingsNames::imapAuthType, Dekko::SettingsNames::plainAuth);
        break;
    case AuthType::LOGIN:
        m_settings->setValue(Dekko::SettingsNames::imapAuthType, Dekko::SettingsNames::loginAuth);
        break;
    case AuthType::OAUTH:
        m_settings->setValue(Dekko::SettingsNames::imapAuthType, Dekko::SettingsNames::oAuth);
        break;
    }
    m_settings->setValue(Dekko::SettingsNames::imapSslPemPubKey, m_publicKey);
    m_settings->setValue(Dekko::SettingsNames::imapNeedsNetwork, m_needsNetwork);
    m_settings->setValue(Dekko::SettingsNames::imapUseSystemProxy, m_useSysProxy);
    m_settings->setValue(Dekko::SettingsNames::imapBlacklistedCapabilities, m_extBlackList);
    // Try to make sure we always drop back to root group when done
    m_settings->endGroup();
    // ensure we sync this back to the settings file so other instances see these new values on reload
    m_settings->sync();
    return true;
}

bool ImapSettings::reload()
{
    if (!m_settings->group().isEmpty()) {
        m_settings->endGroup();
    }
    // We only do single level grouping in the settings file
    // If the QSettings::endGroup() didn't kick us back to root
    // then were screwed, so fail!!
    // FIXME: do some logic or find a quick way to drop to root. i.e ""
    Q_ASSERT(m_settings->group().isEmpty());
    m_settings->beginGroup(m_accountId);
    setServer(m_settings->value(Dekko::SettingsNames::imapHostKey).toString());
    setUsername(m_settings->value(Dekko::SettingsNames::imapUserKey).toString());
    if (m_settings->value(Dekko::SettingsNames::imapMethodKey).toString() == Dekko::SettingsNames::methodSSL) {
        setConnectionMethod(ConnectionMethod::SSL);
    } else if (m_settings->value(Dekko::SettingsNames::imapMethodKey).toString() == Dekko::SettingsNames::methodTCP) {
        setConnectionMethod(m_settings->value(Dekko::SettingsNames::imapStartTlsKey).toBool() ?
                    ConnectionMethod::STARTTLS : ConnectionMethod::NONE);
    } else if (m_settings->value(Dekko::SettingsNames::imapMethodKey).toString() == Dekko::SettingsNames::methodProcess) {
        setConnectionMethod(ConnectionMethod::PROCESS);
    } else {
        setConnectionMethod(ConnectionMethod::NONE);
    }
    m_port = m_settings->value(Dekko::SettingsNames::imapPortKey, QVariant(0)).toInt();
    if (!m_port) {
        switch (m_connectionMethod) {
        case ConnectionMethod::NONE:
        case ConnectionMethod::STARTTLS:
            setPort(PORT_IMAP);
            break;
        case ConnectionMethod::SSL:
            setPort(PORT_IMAPS);
            break;
        case ConnectionMethod::PROCESS:
        case ConnectionMethod::INVALID:
            // do nothing
            break;
        }
    }
    if (m_settings->value(Dekko::SettingsNames::imapAuthType).toString() == Dekko::SettingsNames::plainAuth) {
        setAuthenticationMethod(AuthType::PLAIN);
    } else if (m_settings->value(Dekko::SettingsNames::imapAuthType).toString() == Dekko::SettingsNames::loginAuth) {
        setAuthenticationMethod(AuthType::LOGIN);
    } else if (m_settings->value(Dekko::SettingsNames::imapAuthType).toString() == Dekko::SettingsNames::oAuth) {
        setAuthenticationMethod(AuthType::OAUTH);
    } else {
        setAuthenticationMethod(AuthType::PLAIN);
    }
    m_filterSubscribed = m_settings->value(Dekko::SettingsNames::imapFilterSubscribed, false).toBool();
    setPublicKey(m_settings->value(Dekko::SettingsNames::imapSslPemPubKey).toByteArray());
    setNeedsNetwork(m_settings->value(Dekko::SettingsNames::imapNeedsNetwork, true).toBool());
    setUseSystemProxy(m_settings->value(Dekko::SettingsNames::imapUseSystemProxy, true).toBool());
    setImapExtensionBlackList(m_settings->value(Dekko::SettingsNames::imapBlacklistedCapabilities, QVariant()).toStringList());
    // Try to make sure we always drop back to root group when done
    m_settings->endGroup();
    return true;
}

void ImapSettings::setFilterSubscribed(bool arg)
{
    if (m_filterSubscribed != arg) {
        m_filterSubscribed = arg;
        emit subscribedChanged(arg);
    }
}

void ImapSettings::maybeShowPortWarning()
{
    QString errorMsg;
    switch (m_connectionMethod) {
    case ConnectionMethod::NONE:
    case ConnectionMethod::STARTTLS:
        if (m_port != PORT_IMAP) {
            errorMsg = QStringLiteral("This port is nonstandard. The default port is %1").arg(QVariant(PORT_IMAP).toString());
        }
        break;
    case ConnectionMethod::SSL:
        if (m_port != PORT_IMAPS) {
            errorMsg = QStringLiteral("This port is nonstandard. The default port is %1").arg(QVariant(PORT_IMAPS).toString());
        }
        break;
    case ConnectionMethod::PROCESS:
    case ConnectionMethod::INVALID:
        // do nothing
        break;
    }
    m_portWarning = errorMsg;
    emit portWarningChanged();
}



SmtpSettings::SmtpSettings(QObject *parent) :
    AbstractSettings(parent), m_port(0), m_saveToImap(false), m_useBurl(false), m_submissionMethod(SubmissionMethod::SMTP),
    m_authType(AuthType::PLAIN)
{
    // We want to reload when ever the accountId changed
    connect(this, SIGNAL(accountIdChanged()), this, SLOT(reload()));
    connect(this, SIGNAL(portChanged()), this, SLOT(maybeShowPortWarning()));
}

QString SmtpSettings::server() const
{
    return m_server;
}

void SmtpSettings::setServer(const QString &server)
{
    if (server == m_server) {
        return;
    }
    m_server = server;
    emit serverChanged();
}

int SmtpSettings::port() const
{
    return m_port;
}

void SmtpSettings::setPort(const int &port)
{
    if (port == m_port) {
        return;
    }
    m_port = port;
    emit portChanged();
}

QString SmtpSettings::username() const
{
    return m_username;
}

void SmtpSettings::setUsername(const QString &username)
{
    if (username == m_username) {
        return;
    }
    m_username = username;
    emit usernameChanged();
}

SmtpSettings::SubmissionMethod SmtpSettings::submissionMethod() const
{
    return m_submissionMethod;
}

void SmtpSettings::setSubmissionMethod(const SubmissionMethod method)
{
    if (m_submissionMethod == method) {
        return;
    }
    m_submissionMethod = method;
    emit submissionMethodChanged();
}

SmtpSettings::AuthType SmtpSettings::authenticationMethod() const
{
    return m_authType;
}

void SmtpSettings::setAuthenticationMethod(const SmtpSettings::AuthType type)
{
    if (type == m_authType) {
        return;
    }
    m_authType = type;
    emit authenticationMethodChanged();
}

QString SmtpSettings::portWarning() const
{
    return m_portWarning;
}

bool SmtpSettings::saveToImap() const
{
    return m_saveToImap;
}

void SmtpSettings::setSaveToImap(const bool shouldSave)
{
    if (shouldSave == m_saveToImap) {
        return;
    }
    m_saveToImap = shouldSave;
    emit saveToImapChanged();
}

QString SmtpSettings::sentMailboxName() const
{
    return m_sentMboxName;
}

void SmtpSettings::setSentMailboxName(const QString &mboxName)
{
    if (mboxName == m_sentMboxName) {
        return;
    }
    m_sentMboxName = mboxName;
    emit sentMailboxNameChanged();
}

bool SmtpSettings::useBurl() const
{
    return m_useBurl;
}

void SmtpSettings::setUseBurl(const bool shouldUse)
{
    if (shouldUse == m_useBurl) {
        return;
    }
    m_useBurl = shouldUse;
    emit useBurlChanged();
}

bool SmtpSettings::migratedUserPrefs() const
{
    m_settings->beginGroup(m_accountId);
    bool migrated = m_settings->value(QStringLiteral("migrated-mboxConfig"), false).toBool();
    m_settings->endGroup();
    return migrated;
}

void SmtpSettings::setMigrateUserPrefs(const bool migrated)
{
    m_settings->beginGroup(m_accountId);
    m_settings->setValue(QStringLiteral("migrated-mboxConfig"), migrated);
    m_settings->sync();
    m_settings->endGroup();
}

bool SmtpSettings::requiresAuth() const
{
    return m_authType != AuthType::NONE;
}

bool SmtpSettings::save()
{
    if (m_accountId.isEmpty()) {
        emit error(QStringLiteral("No account id has been set. Cannot save without one"));
        return false;
    }
    if (!m_settings->group().isEmpty()) {
        m_settings->endGroup();
    }
    // We only do single level grouping in the settings file
    // If the QSettings::endGroup() didn't kick us back to root
    // then were screwed, so fail!!
    // FIXME: do some logic or find a quick way to drop to root. i.e ""
    Q_ASSERT(m_settings->group().isEmpty());
    m_settings->beginGroup(m_accountId);
    m_settings->setValue(Dekko::SettingsNames::smtpHostKey, m_server);
    switch (m_authType) {
    case AuthType::NONE:
        m_settings->setValue(Dekko::SettingsNames::smtpAuthType, Dekko::SettingsNames::noAuth);
        break;
    case AuthType::PLAIN:
        m_settings->setValue(Dekko::SettingsNames::smtpAuthType, Dekko::SettingsNames::plainAuth);
        break;
    case AuthType::LOGIN:
        m_settings->setValue(Dekko::SettingsNames::smtpAuthType, Dekko::SettingsNames::loginAuth);
        break;
    case AuthType::OAUTH:
        m_settings->setValue(Dekko::SettingsNames::smtpAuthType, Dekko::SettingsNames::oAuth);
        break;
    }
    switch (m_submissionMethod) {
    case SubmissionMethod::SMTP:
    case SubmissionMethod::SMTP_STARTTLS:
        m_settings->setValue(Dekko::SettingsNames::msaMethodKey, Dekko::SettingsNames::methodSMTP);
        m_settings->setValue(Dekko::SettingsNames::smtpStartTlsKey,
                             m_submissionMethod == SubmissionMethod::SMTP_STARTTLS); // unconditionally
        m_settings->setValue(Dekko::SettingsNames::smtpUserKey, m_username);
        m_settings->setValue(Dekko::SettingsNames::smtpHostKey, m_server);
        m_settings->setValue(Dekko::SettingsNames::smtpPortKey, m_port);
        break;
    case SubmissionMethod::SSMTP:
        m_settings->setValue(Dekko::SettingsNames::msaMethodKey, Dekko::SettingsNames::methodSSMTP);
        m_settings->setValue(Dekko::SettingsNames::smtpUserKey, m_username);
        m_settings->setValue(Dekko::SettingsNames::smtpPortKey, m_port);
        break;
    case SubmissionMethod::SENDMAIL:
    case SubmissionMethod::IMAP_SENDMAIL:
        // NOT SUPPORTED YET
        break;
    }

    m_settings->setValue(Dekko::SettingsNames::composerSaveToImapKey, m_saveToImap);
    if (m_saveToImap) {
        m_settings->setValue(Dekko::SettingsNames::composerImapSentKey, m_sentMboxName);
        m_settings->setValue(Dekko::SettingsNames::smtpUseBurlKey, m_useBurl);
    } else {
        m_settings->setValue(Dekko::SettingsNames::smtpUseBurlKey, false);
    }

    // Try to make sure we always drop back to root group when done
    m_settings->endGroup();
    m_settings->sync();
    return true;
}

bool SmtpSettings::reload()
{
    if (!m_settings->group().isEmpty()) {
        m_settings->endGroup();
    }
    // We only do single level grouping in the settings file
    // If the QSettings::endGroup() didn't kick us back to root
    // then were screwed, so fail!!
    // FIXME: do some logic or find a quick way to drop to root. i.e ""
    Q_ASSERT(m_settings->group().isEmpty());
    m_settings->beginGroup(m_accountId);
    setServer(m_settings->value(Dekko::SettingsNames::smtpHostKey).toString());
    setUsername(m_settings->value(Dekko::SettingsNames::smtpUserKey).toString());
    QString connMethod = m_settings->value(Dekko::SettingsNames::msaMethodKey,
                                           Dekko::SettingsNames::methodSMTP).toString();
    if (connMethod == Dekko::SettingsNames::methodSMTP) {
        setSubmissionMethod(m_settings->value(Dekko::SettingsNames::smtpStartTlsKey).toBool() ?
                            SubmissionMethod::SMTP_STARTTLS : SubmissionMethod::SMTP);
    } else if (connMethod == Dekko::SettingsNames::methodSSMTP) {
        setSubmissionMethod(SubmissionMethod::SSMTP);
    } else if (connMethod == Dekko::SettingsNames::methodSSMTP) {
        setSubmissionMethod(SubmissionMethod::SSMTP);
    } else if (connMethod == Dekko::SettingsNames::methodSENDMAIL) {
        setSubmissionMethod(SubmissionMethod::SENDMAIL);
    } else if (connMethod == Dekko::SettingsNames::methodImapSendmail) {
        setSubmissionMethod(SubmissionMethod::IMAP_SENDMAIL);
    } else {
        // unknown submission type, lets default to SMTP
        setSubmissionMethod(SubmissionMethod::SMTP);
    }
    QString authType = m_settings->value(Dekko::SettingsNames::smtpAuthType).toString();
    if (authType == Dekko::SettingsNames::noAuth) {
        m_authType = AuthType::NONE;
    } else {
        m_authType = AuthType::LOGIN;
    }
    m_port = m_settings->value(Dekko::SettingsNames::smtpPortKey, QVariant(0)).toInt();
    if (!m_port) {
        switch (m_submissionMethod) {
        case SubmissionMethod::SMTP:
        case SubmissionMethod::SMTP_STARTTLS:
            setPort(PORT_SMTP_SUBMISSION);
            break;
        case SubmissionMethod::SSMTP:
            setPort(PORT_SMTP_SSL);
            break;
        case SubmissionMethod::SENDMAIL:
        case SubmissionMethod::IMAP_SENDMAIL:
            //do nothing
            break;
        }
    } else {
        // Let's just check that we should be showing a port warning
        maybeShowPortWarning();
    }

    if (m_settings->value(Dekko::SettingsNames::smtpAuthType).toString() == Dekko::SettingsNames::plainAuth) {
        setAuthenticationMethod(AuthType::PLAIN);
    } else if (m_settings->value(Dekko::SettingsNames::smtpAuthType).toString() == Dekko::SettingsNames::loginAuth) {
        setAuthenticationMethod(AuthType::LOGIN);
    } else if (m_settings->value(Dekko::SettingsNames::smtpAuthType).toString() == Dekko::SettingsNames::oAuth) {
        setAuthenticationMethod(AuthType::OAUTH);
    } else {
        setAuthenticationMethod(AuthType::PLAIN);
    };
    m_saveToImap = m_settings->value(Dekko::SettingsNames::composerSaveToImapKey, false).toBool();
    if (m_saveToImap) {
        m_sentMboxName = m_settings->value(Dekko::SettingsNames::composerImapSentKey).toString();
//        m_settings->setValue(Dekko::SettingsNames::smtpUseBurlKey, m_useBurl);
    } /*else {
//        m_settings->setValue(Dekko::SettingsNames::smtpUseBurlKey, false);
    }*/
    // Try to make sure we always drop back to root group when done

    m_settings->endGroup();
    return true;
}

void SmtpSettings::maybeShowPortWarning()
{
    QString errorMsg;
    switch (m_submissionMethod) {
    case SubmissionMethod::SMTP:
    case SubmissionMethod::SMTP_STARTTLS:
        if (m_port != PORT_SMTP_SUBMISSION) {
            errorMsg = QStringLiteral("This port is nonstandard. The default port is %1").arg(QVariant(PORT_SMTP_SUBMISSION).toString());
        }
        break;
    case SubmissionMethod::SSMTP:
        if (m_port != PORT_SMTP_SSL) {
            errorMsg = QStringLiteral("This port is nonstandard. The default port is %1").arg(QVariant(PORT_SMTP_SSL).toString());
        }
        break;
    case SubmissionMethod::SENDMAIL:
    case SubmissionMethod::IMAP_SENDMAIL:
        // do nothing
        break;
    }
    m_portWarning = errorMsg;
    emit portWarningChanged();
}

Preferences::Preferences(QObject *parent) :
    AbstractSettings(parent), m_autoLoadImages(false), m_preferPlainText(false),
    m_autoExpunge(false), m_hideDeleted(false), m_enableId(false), m_markAsRead(NEVER), m_markAsReadAfter(0),
    m_gravatarAllowed(false), m_previewLines(0)
{
    connect(this, SIGNAL(accountIdChanged()), this, SLOT(reload()));
    connect(this, SIGNAL(preferencesChanged()), this, SLOT(save()));
    // Preferences comes under the global settings so we use
    // our globalId here.
    setAccountId(Id::globalId);
}

bool Preferences::autoLoadImages() const
{
    return m_autoLoadImages;
}

void Preferences::setAutoLoadImages(const bool autoLoad)
{
    if (autoLoad == m_autoLoadImages) {
        return;
    }
    m_autoLoadImages = autoLoad;
    emit preferencesChanged();
}

bool Preferences::preferPlainText() const
{
    return m_preferPlainText;
}

void Preferences::setPreferPlainText(const bool prefer)
{
    if (prefer == m_preferPlainText) {
        return;
    }
    m_preferPlainText = prefer;
    emit preferencesChanged();
}

bool Preferences::autoExpungeOnDelete() const
{
    return m_autoExpunge;
}

void Preferences::setAutoExpungeOnDelete(const bool shouldExpunge)
{
    if (shouldExpunge == m_autoExpunge) {
        return;
    }
    m_autoExpunge = shouldExpunge;
    emit preferencesChanged();
}

QString Preferences::theme() const
{
    return m_theme;
}

void Preferences::setTheme(const QString &theme)
{
    if (theme == m_theme) {
        return;
    }
    m_theme = theme;
    emit preferencesChanged();
}

bool Preferences::imapEnableId() const
{
    return m_enableId;
}

void Preferences::setImapEnableId(const bool enable)
{
    if (enable == m_enableId) {
        return;
    }
    m_enableId = enable;
    emit preferencesChanged();
}

Preferences::MarkAsRead Preferences::markAsRead() const
{
    return m_markAsRead;
}

void Preferences::setMarkAsRead(Preferences::MarkAsRead value)
{
    if (value == m_markAsRead) {
        return;
    }
    m_markAsRead = value;
    emit preferencesChanged();
}

int Preferences::markAsReadAfter() const
{
    return m_markAsReadAfter;
}

void Preferences::setMarkAsReadAfter(const int &secs)
{
//    if (secs == m_markAsReadAfter) {
//        return;
//    }
    m_markAsReadAfter = secs;
    emit preferencesChanged();
}

bool Preferences::hideMarkedDeleted() const
{
    return m_hideDeleted;
}

void Preferences::setHideMarkedDeleted(const bool hide)
{
    if (hide == m_hideDeleted) {
        return;
    }
    m_hideDeleted = hide;
    emit preferencesChanged();
}

bool Preferences::gravatar() const
{
    return m_gravatarAllowed;
}

void Preferences::setGravatar(const bool allow)
{
    if (allow == m_gravatarAllowed) {
        return;
    }
    m_gravatarAllowed = allow;
    emit preferencesChanged();
}

int Preferences::previewLines() const
{
    return m_previewLines;
}

void Preferences::setPreviewLines(const int &lines)
{
    m_previewLines = lines;
    emit preferencesChanged();
}

QString Preferences::defaultAccount() const
{
    return m_defaultAccount;
}

void Preferences::setDefaultAccount(const QString &accountId)
{
    if (m_defaultAccount == accountId) {
        return;
    }
    m_defaultAccount = accountId;
    emit preferencesChanged();
}

bool Preferences::isDefaultAccount(const QString &accountId)
{
    return m_defaultAccount == accountId;
}

bool Preferences::save()
{
    if (m_accountId.isEmpty()) {
        emit error(QStringLiteral("No account id has been set. Cannot save without one"));
        return false;
    }
    if (!m_settings->group().isEmpty()) {
        m_settings->endGroup();
    }
    // We only do single level grouping in the settings file
    // If the QSettings::endGroup() didn't kick us back to root
    // then were screwed, so fail!!
    // FIXME: do some logic or find a quick way to drop to root. i.e ""
    Q_ASSERT(m_settings->group().isEmpty());
    m_settings->beginGroup(m_accountId);
    m_settings->setValue(Dekko::SettingsNames::imapAutoLoadImages, m_autoLoadImages);
    m_settings->setValue(Dekko::SettingsNames::imapAutoExpunge, m_autoExpunge);
    m_settings->setValue(Dekko::SettingsNames::hideMarkedDeleted, m_hideDeleted);
    m_settings->setValue(Dekko::SettingsNames::preferPlainText, m_preferPlainText);
    m_settings->setValue(Dekko::SettingsNames::theme, m_theme);
    m_settings->setValue(Dekko::SettingsNames::imapEnableId, m_enableId);
    m_settings->setValue(Dekko::SettingsNames::allowGravatar, m_gravatarAllowed);
    switch (m_markAsRead) {
    case NEVER:
        m_settings->setValue(SettingsNames::markAsRead, SettingsNames::neverMarkRead);
        break;
    case AFTER_X_SECS:
        m_settings->setValue(SettingsNames::markAsRead, SettingsNames::secondsBeforeMarkRead);
        m_settings->setValue(SettingsNames::markAsReadAfter, m_markAsReadAfter);
        break;
    case IMMEDIATELY:
        m_settings->setValue(SettingsNames::markAsRead, SettingsNames::immediatelyMarkRead);
        break;
    }
    m_settings->setValue(Dekko::SettingsNames::previewLines, m_previewLines);
    m_settings->setValue(Dekko::SettingsNames::defaultAccount, m_defaultAccount);
    // Try to make sure we always drop back to root group when done
    m_settings->endGroup();
    m_settings->sync();
    return true;
}

bool Preferences::reload()
{
    if (!m_settings->group().isEmpty()) {
        m_settings->endGroup();
    }
    // We only do single level grouping in the settings file
    // If the QSettings::endGroup() didn't kick us back to root
    // then were screwed, so fail!!
    // FIXME: do some logic or find a quick way to drop to root. i.e ""
    Q_ASSERT(m_settings->group().isEmpty());
    m_settings->beginGroup(m_accountId);
    m_autoLoadImages = m_settings->value(Dekko::SettingsNames::imapAutoLoadImages, true).toBool();
    m_autoExpunge = m_settings->value(Dekko::SettingsNames::imapAutoExpunge, false).toBool();
    m_hideDeleted = m_settings->value(Dekko::SettingsNames::hideMarkedDeleted, true).toBool();
    m_preferPlainText = m_settings->value(Dekko::SettingsNames::preferPlainText, false).toBool();
    m_theme = m_settings->value(SettingsNames::theme, QLatin1String("Ubuntu.Components.Themes.Ambiance")).toString();
    m_enableId = m_settings->value(Dekko::SettingsNames::imapEnableId, true).toBool();
    m_gravatarAllowed = m_settings->value(Dekko::SettingsNames::allowGravatar, true).toBool();
    m_markAsReadAfter = m_settings->value(Dekko::SettingsNames::markAsReadAfter, 3).toInt();
    if (m_settings->value(SettingsNames::markAsRead).toString() == SettingsNames::neverMarkRead) {
        m_markAsRead = NEVER;
    } else if (m_settings->value(SettingsNames::markAsRead).toString() == SettingsNames::secondsBeforeMarkRead) {
        m_markAsRead = AFTER_X_SECS;
    } else if (m_settings->value(Dekko::SettingsNames::markAsRead).toString() == SettingsNames::immediatelyMarkRead) {
        m_markAsRead = IMMEDIATELY;
    } else {
        m_markAsRead = IMMEDIATELY;
    }
    m_previewLines = m_settings->value(Dekko::SettingsNames::previewLines, 2).toInt();
    m_defaultAccount = m_settings->value(Dekko::SettingsNames::defaultAccount, QLatin1String("INVALID")).toString();
    // Try to make sure we always drop back to root group when done
    m_settings->endGroup();
    save();
    return true;
}

OfflineSettings::OfflineSettings(QObject *parent) :
    AbstractSettings(parent), m_startOffline(false), m_cacheNumDays(0)
{
    connect(this, SIGNAL(accountIdChanged()), this, SLOT(reload()));
    connect(this, SIGNAL(offlineSettingsChanged()), this, SLOT(save()));
    setAccountId(Id::globalId);
}

bool OfflineSettings::startOffline() const
{
    return m_startOffline;
}

void OfflineSettings::setStartOffline(const bool startOffline)
{
    if (startOffline == m_startOffline) {
        return;
    }
    m_startOffline = startOffline;
    emit offlineSettingsChanged();
}

OfflineSettings::CacheOffline OfflineSettings::cacheOffline() const
{
    return m_cacheOffline;
}

void OfflineSettings::setCacheOffline(const CacheOffline &val)
{
    if (val == m_cacheOffline) {
        return;
    }
    m_cacheOffline = val;

    emit offlineSettingsChanged();
}

int OfflineSettings::cacheOfflineNumberOfDays() const
{
    return m_cacheNumDays;
}

void OfflineSettings::setCacheOfflineNumberOfDays(const int &numDays)
{
    if (numDays == m_cacheNumDays) {
        return;
    }
    m_cacheNumDays = numDays;
    emit offlineSettingsChanged();
}

bool OfflineSettings::save()
{
    if (m_accountId.isEmpty()) {
        emit error(QStringLiteral("No account id has been set. Cannot save without one"));
        return false;
    }
    if (!m_settings->group().isEmpty()) {
        m_settings->endGroup();
    }
    Q_ASSERT(m_settings->group().isEmpty());
    m_settings->beginGroup(m_accountId);
    m_settings->setValue(Dekko::SettingsNames::imapStartOffline, m_startOffline);
    m_settings->setValue(Dekko::SettingsNames::cacheOfflineNumberDaysKey, m_cacheNumDays);
    switch (m_cacheOffline) {
    case CacheOffline::NONE:
        m_settings->setValue(Dekko::SettingsNames::cacheOfflineKey, Dekko::SettingsNames::cacheOfflineNone);
        break;
    case CacheOffline::NUM_DAYS:
        m_settings->setValue(Dekko::SettingsNames::cacheOfflineKey, Dekko::SettingsNames::cacheOfflineXDays);
        break;
    case CacheOffline::ALL:
        m_settings->setValue(Dekko::SettingsNames::cacheOfflineKey, Dekko::SettingsNames::cacheOfflineAll);
        break;
    }
    m_settings->endGroup();
    m_settings->sync();
    return true;
}

bool OfflineSettings::reload()
{
    if (!m_settings->group().isEmpty()) {
        m_settings->endGroup();
    }
    Q_ASSERT(m_settings->group().isEmpty());
    m_settings->beginGroup(m_accountId);
    m_startOffline = m_settings->value(Dekko::SettingsNames::imapStartOffline, false).toBool();
    m_cacheNumDays = m_settings->value(Dekko::SettingsNames::cacheOfflineNumberDaysKey, 30).toInt();
    if (m_settings->value(Dekko::SettingsNames::cacheOfflineKey) == Dekko::SettingsNames::cacheOfflineNone) {
        m_cacheOffline = CacheOffline::NONE;
    } else if (m_settings->value(Dekko::SettingsNames::cacheOfflineKey) == Dekko::SettingsNames::cacheOfflineXDays) {
        m_cacheOffline = CacheOffline::NUM_DAYS;
    } else if (m_settings->value(Dekko::SettingsNames::cacheOfflineKey) == Dekko::SettingsNames::cacheOfflineAll) {
       m_cacheOffline = CacheOffline::ALL;
    } else {
        m_cacheOffline = CacheOffline::NUM_DAYS;
    }
    m_settings->endGroup();
    return true;
}

UOASettings::UOASettings(QObject *parent) :
    AbstractSettings(parent), m_uoaAccountId(0), m_provider(DEKKO), m_enabled(false)
{
    connect(this, SIGNAL(accountIdChanged()), this, SLOT(reload()));
}

uint UOASettings::uoaAccountId() const
{
    return m_uoaAccountId;
}

void UOASettings::setUoaAccountId(const uint &id)
{
    if (m_uoaAccountId == id) {
        return;
    }
    m_uoaAccountId = id;
    emit uoaAccountIdChanged();
}

UOASettings::Provider UOASettings::provider() const
{
    return m_provider;
}

void UOASettings::setProvider(const UOASettings::Provider provider)
{
    if (provider == m_provider) {
        return;
    }
    m_provider = provider;
    emit providerChanged();
}

bool UOASettings::enabled() const
{
    return m_enabled;
}

bool UOASettings::save()
{
    if (m_accountId.isEmpty()) {
        emit error(QStringLiteral("No account id has been set. Cannot save without one"));
        return false;
    }
    if (!m_settings->group().isEmpty()) {
        m_settings->endGroup();
    }
    Q_ASSERT(m_settings->group().isEmpty());
    m_settings->beginGroup(m_accountId);
    m_settings->setValue(Dekko::SettingsNames::uoaAccountId, m_uoaAccountId);
    switch (m_provider) {
    case Provider::DEKKO:
        m_settings->setValue(Dekko::SettingsNames::uoaProvider, Dekko::SettingsNames::uoaDekkoProvider);
        break;
    case Provider::GMAIL:
        m_settings->setValue(Dekko::SettingsNames::uoaProvider, Dekko::SettingsNames::uoaGmailProvider);
        break;
    }
    m_settings->setValue(Dekko::SettingsNames::uoaEnabled, m_enabled);
    m_settings->endGroup();
    m_settings->sync();
    return true;
}

bool UOASettings::reload()
{
    if (!m_settings->group().isEmpty()) {
        m_settings->endGroup();
    }
    Q_ASSERT(m_settings->group().isEmpty());
    m_settings->beginGroup(m_accountId);
    m_uoaAccountId = m_settings->value(Dekko::SettingsNames::uoaAccountId).toUInt();
    if (Dekko::SettingsNames::uoaProvider == Dekko::SettingsNames::uoaDekkoProvider) {
        m_provider = Provider::DEKKO;
    } else if (Dekko::SettingsNames::uoaProvider == Dekko::SettingsNames::uoaGmailProvider) {
        m_provider = Provider::GMAIL;
    } else {
        // Default to our own dekko provider
        m_provider = Provider::DEKKO;
    }
    m_enabled = m_settings->value(Dekko::SettingsNames::uoaEnabled, false).toBool();
    m_settings->endGroup();
    return true;
}

void UOASettings::setEnabled(bool arg)
{
    if (m_enabled != arg) {
        m_enabled = arg;
        emit enabledChanged(arg);
    }
}

DeveloperSettings::DeveloperSettings(QObject *parent) :
    AbstractSettings(parent), m_enableNotifications(false), m_devModeEnabled(false), m_imapLogEnabled(false),
    m_enableThreading(false), m_enableContacts(false)
{
    connect(this, SIGNAL(accountIdChanged()), this, SLOT(reload()));
    connect(this, &DeveloperSettings::enableNotificationsChanged, [this]() {this->save();});
    // Preferences comes under the global settings so we use
    // our globalId here.
    setAccountId(Id::globalId);
}

bool DeveloperSettings::developerModeEnabled() const
{
    return m_devModeEnabled;
}

void DeveloperSettings::setDeveloperModeEnabled(const bool enabled)
{
    m_devModeEnabled = enabled;
    emit developerModeEnabledChanged();
    save();
}

bool DeveloperSettings::enableImapModelLogging() const
{
    return m_imapLogEnabled;
}

void DeveloperSettings::setEnableImapModelLogging(const bool enable)
{
    m_imapLogEnabled = enable;
    emit enableImapModelLoggingChanged();
}

bool DeveloperSettings::enableThreading() const
{
    return m_enableThreading;
}

void DeveloperSettings::setEnableThreading(const bool enable)
{
    m_enableThreading = enable;
    emit enableThreadingChanged();
}

bool DeveloperSettings::enableContacts() const
{
    return m_enableContacts;
}

void DeveloperSettings::setEnableContacts(const bool enable)
{
    m_enableContacts = enable;
    emit enableContactsChanged();
}

bool DeveloperSettings::save()
{
    if (!m_settings->group().isEmpty()) {
        m_settings->endGroup();
    }
    Q_ASSERT(m_settings->group().isEmpty());
    m_settings->setValue(QStringLiteral("enableNotifications"), m_enableNotifications);
    m_settings->setValue(QStringLiteral("developerModeEnabled"), m_devModeEnabled);
    m_settings->setValue(QStringLiteral("enableThreading"), m_enableThreading);
    m_settings->setValue(QStringLiteral("enableImapLogging"), m_imapLogEnabled);
    return true;

}

bool DeveloperSettings::reload()
{
    if (!m_settings->group().isEmpty()) {
        m_settings->endGroup();
    }
    Q_ASSERT(m_settings->group().isEmpty());
    m_enableNotifications = m_settings->value(QStringLiteral("enableNotifications"), false).toBool();
    m_devModeEnabled = m_settings->value(QStringLiteral("developerModeEnabled"), false).toBool();
    m_enableThreading = m_settings->value(QStringLiteral("enableThreading"),false).toBool();
    m_imapLogEnabled = m_settings->value(QStringLiteral("enableImapLogging"), false).toBool();

    return true;
}

void SettingsUtils::pruneOrphanedSettings()
{
    QSettings settings;
    QStringList groups;
    settings.beginGroup(QStringLiteral("Accounts"));
    groups = settings.childGroups();
    settings.endGroup();
    if (!groups.length()) {
        return;
    }

    Q_FOREACH(const QString &group, groups) {
        settings.beginGroup(group);
        bool isRealAccount = false;
        const QString accountType = settings.value(Dekko::SettingsNames::accountType).toString();
        if (accountType == Dekko::SettingsNames::imapAccount) {
            isRealAccount = true;
        } else if (accountType == Dekko::SettingsNames::smtpAccount) {
            isRealAccount = true;
        } else if (accountType == Dekko::SettingsNames::dualImapSmtpAccount) {
            isRealAccount = true;
        } else if (accountType == Dekko::SettingsNames::onlineAccount) {
            isRealAccount = true;
        } else {
            isRealAccount = false;
        }
        settings.endGroup();
        if (!isRealAccount) {
            settings.beginGroup(QStringLiteral("Accounts"));
            settings.remove(group);
            settings.endGroup();
            settings.remove(group);
        }
    }
    settings.sync();
}

}
}