This file is indexed.

/usr/include/thunderbird-11.0.1/nsIMsgAccount.h is in thunderbird-dev 11.0.1+build1-0ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM /build/buildd/thunderbird-11.0.1+build1/build-tree/mozilla/mailnews/base/public/nsIMsgAccount.idl
 */

#ifndef __gen_nsIMsgAccount_h__
#define __gen_nsIMsgAccount_h__


#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif

#ifndef __gen_nsIMsgIncomingServer_h__
#include "nsIMsgIncomingServer.h"
#endif

#ifndef __gen_nsIMsgIdentity_h__
#include "nsIMsgIdentity.h"
#endif

#ifndef __gen_nsISupportsArray_h__
#include "nsISupportsArray.h"
#endif

/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif

/* starting interface:    nsIMsgAccount */
#define NS_IMSGACCOUNT_IID_STR "3fe5b45d-acf8-4348-8951-757d21e983f2"

#define NS_IMSGACCOUNT_IID \
  {0x3fe5b45d, 0xacf8, 0x4348, \
    { 0x89, 0x51, 0x75, 0x7d, 0x21, 0xe9, 0x83, 0xf2 }}

class NS_NO_VTABLE NS_SCRIPTABLE nsIMsgAccount : public nsISupports {
 public: 

  NS_DECLARE_STATIC_IID_ACCESSOR(NS_IMSGACCOUNT_IID)

  /* void init (); */
  NS_SCRIPTABLE NS_IMETHOD Init(void) = 0;

  /* attribute ACString key; */
  NS_SCRIPTABLE NS_IMETHOD GetKey(nsACString & aKey) = 0;
  NS_SCRIPTABLE NS_IMETHOD SetKey(const nsACString & aKey) = 0;

  /* attribute nsIMsgIncomingServer incomingServer; */
  NS_SCRIPTABLE NS_IMETHOD GetIncomingServer(nsIMsgIncomingServer * *aIncomingServer) = 0;
  NS_SCRIPTABLE NS_IMETHOD SetIncomingServer(nsIMsgIncomingServer *aIncomingServer) = 0;

  /* readonly attribute nsISupportsArray identities; */
  NS_SCRIPTABLE NS_IMETHOD GetIdentities(nsISupportsArray * *aIdentities) = 0;

  /* attribute nsIMsgIdentity defaultIdentity; */
  NS_SCRIPTABLE NS_IMETHOD GetDefaultIdentity(nsIMsgIdentity * *aDefaultIdentity) = 0;
  NS_SCRIPTABLE NS_IMETHOD SetDefaultIdentity(nsIMsgIdentity *aDefaultIdentity) = 0;

  /* void addIdentity (in nsIMsgIdentity identity); */
  NS_SCRIPTABLE NS_IMETHOD AddIdentity(nsIMsgIdentity *identity) = 0;

  /* void removeIdentity (in nsIMsgIdentity identity); */
  NS_SCRIPTABLE NS_IMETHOD RemoveIdentity(nsIMsgIdentity *identity) = 0;

  /* void clearAllValues (); */
  NS_SCRIPTABLE NS_IMETHOD ClearAllValues(void) = 0;

  /* AString toString (); */
  NS_SCRIPTABLE NS_IMETHOD ToString(nsAString & _retval NS_OUTPARAM) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(nsIMsgAccount, NS_IMSGACCOUNT_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIMSGACCOUNT \
  NS_SCRIPTABLE NS_IMETHOD Init(void); \
  NS_SCRIPTABLE NS_IMETHOD GetKey(nsACString & aKey); \
  NS_SCRIPTABLE NS_IMETHOD SetKey(const nsACString & aKey); \
  NS_SCRIPTABLE NS_IMETHOD GetIncomingServer(nsIMsgIncomingServer * *aIncomingServer); \
  NS_SCRIPTABLE NS_IMETHOD SetIncomingServer(nsIMsgIncomingServer *aIncomingServer); \
  NS_SCRIPTABLE NS_IMETHOD GetIdentities(nsISupportsArray * *aIdentities); \
  NS_SCRIPTABLE NS_IMETHOD GetDefaultIdentity(nsIMsgIdentity * *aDefaultIdentity); \
  NS_SCRIPTABLE NS_IMETHOD SetDefaultIdentity(nsIMsgIdentity *aDefaultIdentity); \
  NS_SCRIPTABLE NS_IMETHOD AddIdentity(nsIMsgIdentity *identity); \
  NS_SCRIPTABLE NS_IMETHOD RemoveIdentity(nsIMsgIdentity *identity); \
  NS_SCRIPTABLE NS_IMETHOD ClearAllValues(void); \
  NS_SCRIPTABLE NS_IMETHOD ToString(nsAString & _retval NS_OUTPARAM); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIMSGACCOUNT(_to) \
  NS_SCRIPTABLE NS_IMETHOD Init(void) { return _to Init(); } \
  NS_SCRIPTABLE NS_IMETHOD GetKey(nsACString & aKey) { return _to GetKey(aKey); } \
  NS_SCRIPTABLE NS_IMETHOD SetKey(const nsACString & aKey) { return _to SetKey(aKey); } \
  NS_SCRIPTABLE NS_IMETHOD GetIncomingServer(nsIMsgIncomingServer * *aIncomingServer) { return _to GetIncomingServer(aIncomingServer); } \
  NS_SCRIPTABLE NS_IMETHOD SetIncomingServer(nsIMsgIncomingServer *aIncomingServer) { return _to SetIncomingServer(aIncomingServer); } \
  NS_SCRIPTABLE NS_IMETHOD GetIdentities(nsISupportsArray * *aIdentities) { return _to GetIdentities(aIdentities); } \
  NS_SCRIPTABLE NS_IMETHOD GetDefaultIdentity(nsIMsgIdentity * *aDefaultIdentity) { return _to GetDefaultIdentity(aDefaultIdentity); } \
  NS_SCRIPTABLE NS_IMETHOD SetDefaultIdentity(nsIMsgIdentity *aDefaultIdentity) { return _to SetDefaultIdentity(aDefaultIdentity); } \
  NS_SCRIPTABLE NS_IMETHOD AddIdentity(nsIMsgIdentity *identity) { return _to AddIdentity(identity); } \
  NS_SCRIPTABLE NS_IMETHOD RemoveIdentity(nsIMsgIdentity *identity) { return _to RemoveIdentity(identity); } \
  NS_SCRIPTABLE NS_IMETHOD ClearAllValues(void) { return _to ClearAllValues(); } \
  NS_SCRIPTABLE NS_IMETHOD ToString(nsAString & _retval NS_OUTPARAM) { return _to ToString(_retval); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIMSGACCOUNT(_to) \
  NS_SCRIPTABLE NS_IMETHOD Init(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Init(); } \
  NS_SCRIPTABLE NS_IMETHOD GetKey(nsACString & aKey) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetKey(aKey); } \
  NS_SCRIPTABLE NS_IMETHOD SetKey(const nsACString & aKey) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetKey(aKey); } \
  NS_SCRIPTABLE NS_IMETHOD GetIncomingServer(nsIMsgIncomingServer * *aIncomingServer) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIncomingServer(aIncomingServer); } \
  NS_SCRIPTABLE NS_IMETHOD SetIncomingServer(nsIMsgIncomingServer *aIncomingServer) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetIncomingServer(aIncomingServer); } \
  NS_SCRIPTABLE NS_IMETHOD GetIdentities(nsISupportsArray * *aIdentities) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIdentities(aIdentities); } \
  NS_SCRIPTABLE NS_IMETHOD GetDefaultIdentity(nsIMsgIdentity * *aDefaultIdentity) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDefaultIdentity(aDefaultIdentity); } \
  NS_SCRIPTABLE NS_IMETHOD SetDefaultIdentity(nsIMsgIdentity *aDefaultIdentity) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDefaultIdentity(aDefaultIdentity); } \
  NS_SCRIPTABLE NS_IMETHOD AddIdentity(nsIMsgIdentity *identity) { return !_to ? NS_ERROR_NULL_POINTER : _to->AddIdentity(identity); } \
  NS_SCRIPTABLE NS_IMETHOD RemoveIdentity(nsIMsgIdentity *identity) { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveIdentity(identity); } \
  NS_SCRIPTABLE NS_IMETHOD ClearAllValues(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->ClearAllValues(); } \
  NS_SCRIPTABLE NS_IMETHOD ToString(nsAString & _retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->ToString(_retval); } 

#if 0
/* Use the code below as a template for the implementation class for this interface. */

/* Header file */
class nsMsgAccount : public nsIMsgAccount
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSIMSGACCOUNT

  nsMsgAccount();

private:
  ~nsMsgAccount();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS1(nsMsgAccount, nsIMsgAccount)

nsMsgAccount::nsMsgAccount()
{
  /* member initializers and constructor code */
}

nsMsgAccount::~nsMsgAccount()
{
  /* destructor code */
}

/* void init (); */
NS_IMETHODIMP nsMsgAccount::Init()
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute ACString key; */
NS_IMETHODIMP nsMsgAccount::GetKey(nsACString & aKey)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsMsgAccount::SetKey(const nsACString & aKey)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute nsIMsgIncomingServer incomingServer; */
NS_IMETHODIMP nsMsgAccount::GetIncomingServer(nsIMsgIncomingServer * *aIncomingServer)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsMsgAccount::SetIncomingServer(nsIMsgIncomingServer *aIncomingServer)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* readonly attribute nsISupportsArray identities; */
NS_IMETHODIMP nsMsgAccount::GetIdentities(nsISupportsArray * *aIdentities)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute nsIMsgIdentity defaultIdentity; */
NS_IMETHODIMP nsMsgAccount::GetDefaultIdentity(nsIMsgIdentity * *aDefaultIdentity)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsMsgAccount::SetDefaultIdentity(nsIMsgIdentity *aDefaultIdentity)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void addIdentity (in nsIMsgIdentity identity); */
NS_IMETHODIMP nsMsgAccount::AddIdentity(nsIMsgIdentity *identity)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void removeIdentity (in nsIMsgIdentity identity); */
NS_IMETHODIMP nsMsgAccount::RemoveIdentity(nsIMsgIdentity *identity)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void clearAllValues (); */
NS_IMETHODIMP nsMsgAccount::ClearAllValues()
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* AString toString (); */
NS_IMETHODIMP nsMsgAccount::ToString(nsAString & _retval NS_OUTPARAM)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* End of implementation class template. */
#endif


#endif /* __gen_nsIMsgAccount_h__ */