From 145c5300260a69b208b4539a1bbd1bbbb1bf46f6 Mon Sep 17 00:00:00 2001 From: Sebastian Reichel Date: Sun, 5 May 2013 21:48:55 +0200 Subject: mail: initial mail service This process provides an DBus interface for sending mails to users. It has MIME support for plain text and html mails and supports attachments. The service gets the SMTP server's hostname, port and authentication data from the configuration daemon. --- src/mail/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/mail/Makefile (limited to 'src/mail/Makefile') diff --git a/src/mail/Makefile b/src/mail/Makefile new file mode 100644 index 0000000..5250e62 --- /dev/null +++ b/src/mail/Makefile @@ -0,0 +1,9 @@ +all: mailer + +mailer: main.vala mailer.vala mail.vala mailer-interface.vala ../config/config-interface.vala + valac -o $@ --vapidir=../../vapi --pkg posix --pkg libesmtp --pkg gio-2.0 --pkg gmime-2.6 -X -D_GNU_SOURCE -X -lesmtp -X -lssl -X -lcrypto -X -ldl -X -pthread $^ + +clean: + rm -f mailer + +.PHONY: all clean -- cgit v1.2.3