summaryrefslogtreecommitdiff
path: root/pith/detach.h
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2020-06-07 21:14:19 -0600
committerEduardo Chappa <chappa@washington.edu>2020-06-07 21:14:19 -0600
commitd1300c95499f3b422c2299432eb4acc93cf4618a (patch)
treef516d0630fbb085ac689c2010e07cbbe6c281ca5 /pith/detach.h
parent6c702a26f10f04bf225aa914b2eae5b89e3d0b4a (diff)
downloadalpine-d1300c95499f3b422c2299432eb4acc93cf4618a.tar.xz
* Experimental: Alpine can pass an HTML message to an external web browser, by using
the "External" command in the ATTACHMENT INDEX screen. * Experimental: New configuration variable "External Command Loads Inline Images Only" that controls if Alpine will pass to an external browser a link to all the images in the HTML message, or will only pass a link to inline images included in the message. For your privacy and security this feature is enabled by default.
Diffstat (limited to 'pith/detach.h')
-rw-r--r--pith/detach.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/pith/detach.h b/pith/detach.h
index 79ed9e5a..1bfa34ef 100644
--- a/pith/detach.h
+++ b/pith/detach.h
@@ -55,9 +55,11 @@ extern FETCH_READC_S *g_fr_desc;
* This lazily gets combined with FT_ flags from c-client so make
* it different from all those possible values.
*/
-#define DT_NODFILTER (long) 0x10000
-#define DT_NOINTR (long) 0x20000
-#define DT_BINARY (long) 0x40000
+#define DT_NODFILTER (long) 0x010000
+#define DT_NOINTR (long) 0x020000
+#define DT_BINARY (long) 0x040000
+#define DT_EXTERNAL (long) 0x080000
+#define DT_ALLIMAGES (long) 0x100000
/* exported prototypes */
char *detach_raw(MAILSTREAM *, long, char *, gf_io_t, int);