ASR_BASE

Change-Id: Icf3719cc0afe3eeb3edc7fa80a2eb5199ca9dda1
diff --git a/external/subpack/mail/sendmail/files/lm_getver.c b/external/subpack/mail/sendmail/files/lm_getver.c
new file mode 100644
index 0000000..c12d1e7
--- /dev/null
+++ b/external/subpack/mail/sendmail/files/lm_getver.c
@@ -0,0 +1,9 @@
+#include <stdio.h>
+#include "libmilter/mfapi.h"
+int main() {
+	printf("%d.%d.%d",
+		SM_LM_VRS_MAJOR(SMFI_VERSION),
+		SM_LM_VRS_MINOR(SMFI_VERSION),
+		SM_LM_VRS_PLVL(SMFI_VERSION)
+	);
+}