]> git.notmuchmail.org Git - notmuch/blob - bindings/python/docs/source/message.rst
Import notmuch_0.28.2.orig.tar.gz
[notmuch] / bindings / python / docs / source / message.rst
1 :class:`Message` -- A single message
2 ====================================
3
4 .. currentmodule:: notmuch
5
6 .. autoclass:: Message
7
8    .. automethod:: get_message_id
9
10    .. automethod:: get_thread_id
11
12    .. automethod:: get_replies
13
14    .. automethod:: get_filename
15
16    .. automethod:: get_filenames
17
18    .. attribute:: FLAG
19
20         FLAG.MATCH
21           This flag is automatically set by a
22           Query.search_threads on those messages that match the
23           query. This allows us to distinguish matches from the rest
24           of the messages in that thread.
25
26    .. automethod:: get_flag
27
28    .. automethod:: set_flag
29
30    .. automethod:: get_date
31
32    .. automethod:: get_header
33
34    .. automethod:: get_tags
35
36    .. automethod:: get_property
37
38    .. automethod:: get_properties
39
40    .. automethod:: maildir_flags_to_tags
41
42    .. automethod:: tags_to_maildir_flags
43
44    .. automethod:: remove_tag
45
46    .. automethod:: add_tag
47
48    .. automethod:: remove_all_tags
49
50    .. automethod:: freeze
51
52    .. automethod:: thaw
53
54    .. automethod:: __str__