add a bunch of new attributes for identities

This commit is contained in:
alecf%netscape.com 1999-08-31 00:19:08 +00:00
Родитель 5b668b051b
Коммит 2d544a12eb
2 изменённых файлов: 24 добавлений и 0 удалений

Просмотреть файл

@ -73,5 +73,16 @@ interface nsIMsgIdentity : nsISupports {
attribute string smtpHostname;
attribute string smtpUsername;
attribute boolean doFcc;
attribute string fccFolder;
attribute boolean bccSelf;
attribute boolean bccOthers;
attribute string bccList;
attribute string draftFolder;
attribute string stationaryFolder;
attribute string junkMailFolder;
wstring toString();
};

Просмотреть файл

@ -329,3 +329,16 @@ NS_IMPL_IDPREF_STR(SmtpHostname, "smtp_server");
NS_IMPL_IDPREF_STR(SmtpUsername, "smtp_name");
NS_IMPL_IDPREF_BOOL(AttachVCard, "attach_vcard");
NS_IMPL_IDPREF_BOOL(AttachSignature, "attach_signature");
NS_IMPL_IDPREF_BOOL(DoFcc, "fcc");
NS_IMPL_IDPREF_STR(FccFolder, "fcc_folder");
NS_IMPL_IDPREF_BOOL(BccSelf, "bcc_self");
NS_IMPL_IDPREF_BOOL(BccOthers, "bcc_other");
NS_IMPL_IDPREF_STR (BccList, "bcc_other_list");
NS_IMPL_IDPREF_STR (DraftFolder, "draft_folder");
NS_IMPL_IDPREF_STR (StationaryFolder, "stationary_folder");
NS_IMPL_IDPREF_STR (JunkMailFolder, "spam_folder");