summaryrefslogtreecommitdiffstats
path: root/src/mail
AgeCommit message (Collapse)AuthorFilesLines
2018-07-20fix date in mailerSebastian Reichel1-15/+7
2018-07-18Debian packagingSebastian Reichel1-1/+0
2018-07-17fix mailerSebastian Reichel1-2/+8
2018-07-15all: fix all remaining warningsSebastian Reichel1-4/+8
2018-07-15build: switch to meson buildsystemSebastian Reichel1-10/+0
We build the project with 'meson' now instead of using custom configure script + GNU Makefiles. To build the project, go to the project root directory and use the following commands: Building: meson build cd build ninja Update Language Files: ninja shopsystem-pot ninja shopsystem-update-po Install: DESTDIR=./tmp ninja install
2018-06-29all: I18N supportSebastian Reichel3-13/+16
This adds I18N support using standard gettext system together with an initial German translation. This can be used to search locales in some directory: Intl.bindtextdomain("shopsystem", "/home/sre/src/serial-barcode-scanner"); And this can be used to switch language at runtime: Intl.setlocale(LocaleCategory.ALL, "");
2018-06-28all: Add DBusError to avoid warnings with valac 0.40Sebastian Reichel4-15/+15
2018-06-28mailer: gmime 2.6 -> 3.0Sebastian Reichel4-23/+31
2017-04-18all: switch from session to system busSebastian Reichel2-2/+2
2016-08-04surpress "Nothing to be done for 'all'" messageSebastian Reichel1-0/+1
2016-08-04mailer: support disabling starttlsSebastian Reichel1-2/+12
Connection to a localhost mailserver do not need TLS encryption, so add support for plaintext connections. Keep default of enabled TLS.
2014-04-09silence C-Compiler warningsSebastian Reichel1-1/+1
2013-05-16implement mail sending queueSebastian Reichel1-6/+11
2013-05-11send mails in the backgroundSebastian Reichel1-3/+15
2013-05-11ignore mailer binarySebastian Reichel1-0/+1
2013-05-10external mail interface should not depend on GMimeSebastian Reichel1-1/+7
2013-05-05mail: initial mail serviceSebastian Reichel5-0/+484
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.