summaryrefslogtreecommitdiffstats
path: root/src/mail/mail.vala
AgeCommit message (Collapse)AuthorFilesLines
2020-09-05Fix missing To Header in mailsSebastian Reichel1-2/+10
The public interface expects internal type, which maps the enum differently. Specifically the internal RecipientType.TO is mapped to 0 for the internal code, but 0 means AddressType.Sender in GMime. As a result the supplied mail addresses end up in the Sender field instead.
2018-07-20fix date in mailerSebastian Reichel1-15/+7
2018-07-17fix mailerSebastian Reichel1-2/+8
2018-06-28all: Add DBusError to avoid warnings with valac 0.40Sebastian Reichel1-3/+3
2018-06-28mailer: gmime 2.6 -> 3.0Sebastian Reichel1-20/+28
2013-05-05mail: initial mail serviceSebastian Reichel1-0/+209
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.