This file is indexed.

/usr/include/GNUstep/Frameworks/Pantomime.framework/Versions/1.2/CWIMAPMessage.h is in libpantomime1.2-dev 1.2.0~pre3+snap20071004+dfsg-4build1.

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
/*
**  CWIMAPMessage.h
**
**  Copyright (c) 2001-2006
**
**  Author: Ludovic Marcotte <ludovic@Sophos.ca>
**
**  This library is free software; you can redistribute it and/or
**  modify it under the terms of the GNU Lesser General Public
**  License as published by the Free Software Foundation; either
**  version 2.1 of the License, or (at your option) any later version.
**  
**  This library is distributed in the hope that it will be useful,
**  but WITHOUT ANY WARRANTY; without even the implied warranty of
**  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
**  Lesser General Public License for more details.
**  
**  You should have received a copy of the GNU Lesser General Public
**  License along with this library; if not, write to the Free Software
**  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

#ifndef _Pantomime_H_CWIMAPMessage
#define _Pantomime_H_CWIMAPMessage

#import <Foundation/NSCoder.h>

#include <Pantomime/CWMessage.h>

/*!
  @class CWIMAPMessage
  @discussion This class, which extends CWMessage, adds IMAP specific
              information and redefines the behavior of some methods
	      from its superclass.
*/
@interface CWIMAPMessage : CWMessage <NSCoding>
{
  @private
    BOOL _headers_were_prefetched;
    unsigned int _UID;
}

/*!
  @method UID
  @discussion This method is used to obtain the UID of a message.
              See 2.3.1.1. Unique Identifier (UID) Message Attribute
	      of RFC 3501 for a detailed description of the UID
	      attribute of a message.
  @result The UID, 0 if the receiver has no UID.
*/
- (unsigned int) UID;

/*!
  @method setUID:
  @discussion This method is used to set the UID of the receiver.
              Normally, you shouldn't invoke this method directly.
  @param theUID The UID of the message.
*/
- (void) setUID: (unsigned int) theUID;

/*!
  @method rawSource
  @discussion IMAP specific implementation of the rawSource method. This method
              is always non-blocking. It might return nil if the raw source of the
	      message hasn't yet been fetched from the IMAP server. The IMAPStore
	      notifies the delegate when the fetch has been completed.
  @result The raw source of the message, nil if not yet fully fetched.
*/
- (NSData *) rawSource;

/*!
  @method setFlags:
  @discussion This method overrides the one found in CWMessage.
              It will replace all the flags on the server
	      for this message with the flags specified in the argument.
  @param theFlags The new flags for the receiver.
*/
- (void) setFlags: (CWFlags *) theFlags;

@end

#endif // _Pantomime_H_CWIMAPMessage