summaryrefslogtreecommitdiffstats
path: root/src/lib-mail/istream-dot.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib-mail/istream-dot.h')
-rw-r--r--src/lib-mail/istream-dot.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib-mail/istream-dot.h b/src/lib-mail/istream-dot.h
new file mode 100644
index 0000000..129bc70
--- /dev/null
+++ b/src/lib-mail/istream-dot.h
@@ -0,0 +1,9 @@
+#ifndef ISTREAM_DOT_H
+#define ISTREAM_DOT_H
+
+/* Create input stream for reading SMTP DATA style message: Drop initial "."
+ from lines beginning with it. Return EOF on line that contains only ".".
+ If send_last_lf=FALSE, the trailing [CR]LF before "." line isn't returned. */
+struct istream *i_stream_create_dot(struct istream *input, bool send_last_lf);
+
+#endif