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.
*/
s.put("alwaysBcc", Settings.versions(
new V(11, new StringSetting(""))
));
s.put("archiveFolderName", Settings.versions(
new V(1, new StringSetting("Archive"))
));

View File

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