NeoMutt  2025-12-11-435-g4ac674
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
module_data.h
Go to the documentation of this file.
1
22
23#ifndef MUTT_ATTACH_MODULE_DATA_H
24#define MUTT_ATTACH_MODULE_DATA_H
25
26#include "mutt/lib.h"
27
32{
33 struct ListHead attach_allow;
34 struct ListHead attach_exclude;
35 struct ListHead inline_allow;
36 struct ListHead inline_exclude;
38
39 struct ListHead mime_lookup;
40 struct ListHead temp_attachments;
41};
42
43#endif /* MUTT_ATTACH_MODULE_DATA_H */
Convenience wrapper for the library headers.
Attach private Module data.
Definition module_data.h:32
struct ListHead attach_allow
List of attachment types to be counted.
Definition module_data.h:33
struct ListHead attach_exclude
List of attachment types to be ignored.
Definition module_data.h:34
struct ListHead temp_attachments
List of temporary files for displaying attachments.
Definition module_data.h:40
struct ListHead inline_allow
List of inline types to counted.
Definition module_data.h:35
struct ListHead inline_exclude
List of inline types to ignore.
Definition module_data.h:36
struct ListHead mime_lookup
List of mime types that that shouldn't use the mailcap entry.
Definition module_data.h:39
struct Notify * attachments_notify
Notifications: NotifyAttach.
Definition module_data.h:37
Notification API.
Definition notify.c:53