From a8b27bf38cf1d00227db0ab02433175380688473 Mon Sep 17 00:00:00 2001 From: "edwin%woudt.nl" Date: Sun, 21 Feb 1999 03:00:15 +0000 Subject: [PATCH] This patch is to make sure that Giao can work on the prefs code without problems because I'm messing aroung with the multiple personalities code. So now first everything gets stored in the default identity. If you want more identities you'll have to hack git-svn-id: svn://10.0.0.236/trunk@21429 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/grendel/prefs/Prefs.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mozilla/grendel/prefs/Prefs.java b/mozilla/grendel/prefs/Prefs.java index c6888079902..6abd8794377 100644 --- a/mozilla/grendel/prefs/Prefs.java +++ b/mozilla/grendel/prefs/Prefs.java @@ -36,12 +36,12 @@ import grendel.ui.StoreFactory; public class Prefs { static Preferences fPrefs = PreferencesFactory.Get(); - static final String kUserName = "user.name"; - static final String kOrganization = "user.organization"; - static final String kEmailAddress = "user.email_address"; - static final String kPopHost = "pop.host"; - static final String kPopUser = "pop.user"; - static final String kPopPassword = "pop.password"; + static final String kUserName = "user.identity-0.username"; + static final String kOrganization = "user.identity-0.organization"; + static final String kEmailAddress = "user.identity-0.email"; + //static final String kPopHost = "pop.host"; + //static final String kPopUser = "pop.user"; + //static final String kPopPassword = "pop.password"; static final String kPopLeaveOnServer = "pop.leaveMailOnServer"; static final String kMailDirectory = "mail.directory"; static final String kSMTPHost = "mail.smtp.host";