Added missing account setting "alwaysBcc" to import/export table

This commit is contained in:
cketti 2012-05-16 23:03:40 +02:00
parent bd6cdecdb0
commit 632dde614d
2 changed files with 4 additions and 1 deletions

View file

@ -30,6 +30,9 @@ public class AccountSettings {
* and use that for whatever you add here. * and use that for whatever you add here.
*/ */
s.put("alwaysBcc", Settings.versions(
new V(11, new StringSetting(""))
));
s.put("archiveFolderName", Settings.versions( s.put("archiveFolderName", Settings.versions(
new V(1, new StringSetting("Archive")) new V(1, new StringSetting("Archive"))
)); ));

View file

@ -35,7 +35,7 @@ public class Settings {
* *
* @see SettingsExporter * @see SettingsExporter
*/ */
public static final int VERSION = 10; public static final int VERSION = 11;
public static Map<String, Object> validate(int version, Map<String, public static Map<String, Object> validate(int version, Map<String,
TreeMap<Integer, SettingsDescription>> settings, TreeMap<Integer, SettingsDescription>> settings,