This file is indexed.

/usr/include/thunderbird/nsIMsgMdnGenerator.h is in thunderbird-dev 1:38.6.0+build1-0ubuntu1.

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
/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM ../../../dist/idl/nsIMsgMdnGenerator.idl
 */

#ifndef __gen_nsIMsgMdnGenerator_h__
#define __gen_nsIMsgMdnGenerator_h__


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

#ifndef __gen_MailNewsTypes2_h__
#include "MailNewsTypes2.h"
#endif

/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIMsgWindow; /* forward declaration */

class nsIMsgFolder; /* forward declaration */

class nsIMimeHeaders; /* forward declaration */

typedef int32_t  EDisposeType;

typedef int32_t  ReceiptHdrType;

typedef int32_t  MDNIncorporateType;

#define NS_MSGMDNGENERATOR_CONTRACTID \
  "@mozilla.org/messenger-mdn/generator;1"
#define NS_MSGMDNGENERATOR_CID                    \
{ /* ec917b13-8f73-4d4d-9146-d7f7aafe9076 */      \
 0xec917b13, 0x8f73, 0x4d4d,                      \
 { 0x91, 0x46, 0xd7, 0xf7, 0xaa, 0xfe, 0x90, 0x76 }}

/* starting interface:    nsIMsgMdnGenerator */
#define NS_IMSGMDNGENERATOR_IID_STR "440ea3de-daca-4886-9875-84e6cd7d7927"

#define NS_IMSGMDNGENERATOR_IID \
  {0x440ea3de, 0xdaca, 0x4886, \
    { 0x98, 0x75, 0x84, 0xe6, 0xcd, 0x7d, 0x79, 0x27 }}

class NS_NO_VTABLE nsIMsgMdnGenerator : public nsISupports {
 public: 

  NS_DECLARE_STATIC_IID_ACCESSOR(NS_IMSGMDNGENERATOR_IID)

  enum {
    eDisplayed = 0,
    eDispatched = 1,
    eProcessed = 2,
    eDeleted = 3,
    eDenied = 4,
    eFailed = 5,
    eDntType = 0,
    eRrtType = 1,
    eDntRrtType = 2,
    eIncorporateInbox = 0,
    eIncorporateSent = 1
  };

  /* boolean process (in EDisposeType eType, in nsIMsgWindow aWindow, in nsIMsgFolder folder, in nsMsgKey key, in nsIMimeHeaders headers, in boolean autoAction); */
  NS_IMETHOD Process(EDisposeType eType, nsIMsgWindow *aWindow, nsIMsgFolder *folder, nsMsgKey key, nsIMimeHeaders *headers, bool autoAction, bool *_retval) = 0;

  /* void userAgreed (); */
  NS_IMETHOD UserAgreed(void) = 0;

  /* void userDeclined (); */
  NS_IMETHOD UserDeclined(void) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(nsIMsgMdnGenerator, NS_IMSGMDNGENERATOR_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIMSGMDNGENERATOR \
  NS_IMETHOD Process(EDisposeType eType, nsIMsgWindow *aWindow, nsIMsgFolder *folder, nsMsgKey key, nsIMimeHeaders *headers, bool autoAction, bool *_retval) override; \
  NS_IMETHOD UserAgreed(void) override; \
  NS_IMETHOD UserDeclined(void) override; 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIMSGMDNGENERATOR(_to) \
  NS_IMETHOD Process(EDisposeType eType, nsIMsgWindow *aWindow, nsIMsgFolder *folder, nsMsgKey key, nsIMimeHeaders *headers, bool autoAction, bool *_retval) override { return _to Process(eType, aWindow, folder, key, headers, autoAction, _retval); } \
  NS_IMETHOD UserAgreed(void) override { return _to UserAgreed(); } \
  NS_IMETHOD UserDeclined(void) override { return _to UserDeclined(); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIMSGMDNGENERATOR(_to) \
  NS_IMETHOD Process(EDisposeType eType, nsIMsgWindow *aWindow, nsIMsgFolder *folder, nsMsgKey key, nsIMimeHeaders *headers, bool autoAction, bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Process(eType, aWindow, folder, key, headers, autoAction, _retval); } \
  NS_IMETHOD UserAgreed(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->UserAgreed(); } \
  NS_IMETHOD UserDeclined(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->UserDeclined(); } 

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

/* Header file */
class nsMsgMdnGenerator : public nsIMsgMdnGenerator
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSIMSGMDNGENERATOR

  nsMsgMdnGenerator();

private:
  ~nsMsgMdnGenerator();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS(nsMsgMdnGenerator, nsIMsgMdnGenerator)

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

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

/* boolean process (in EDisposeType eType, in nsIMsgWindow aWindow, in nsIMsgFolder folder, in nsMsgKey key, in nsIMimeHeaders headers, in boolean autoAction); */
NS_IMETHODIMP nsMsgMdnGenerator::Process(EDisposeType eType, nsIMsgWindow *aWindow, nsIMsgFolder *folder, nsMsgKey key, nsIMimeHeaders *headers, bool autoAction, bool *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void userAgreed (); */
NS_IMETHODIMP nsMsgMdnGenerator::UserAgreed()
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void userDeclined (); */
NS_IMETHODIMP nsMsgMdnGenerator::UserDeclined()
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


#endif /* __gen_nsIMsgMdnGenerator_h__ */