summaryrefslogtreecommitdiffstats
path: root/src/mail/mailer.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/mail/mailer.vala')
-rw-r--r--src/mail/mailer.vala14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/mail/mailer.vala b/src/mail/mailer.vala
index e4b1c6d..4888fe7 100644
--- a/src/mail/mailer.vala
+++ b/src/mail/mailer.vala
@@ -31,6 +31,7 @@ public class MailerImplementation {
string server;
string username;
string password;
+ bool starttls;
unowned string? callback(out string? buf, int *len) {
buf = null;
@@ -86,15 +87,24 @@ public class MailerImplementation {
password = "";
}
+ try {
+ starttls = config.get_boolean("MAIL", "starttls");
+ } catch(KeyFileError e) {
+ starttls = true;
+ }
+
/* setup server */
result = session.set_server(server);
if(result == 0)
throw new IOError.FAILED("could not setup server");
/* Use TLS if possible */
- result = session.starttls_enable(Smtp.StartTlsOption.ENABLED);
+ if (starttls)
+ result = session.starttls_enable(Smtp.StartTlsOption.ENABLED);
+ else
+ result = session.starttls_enable(Smtp.StartTlsOption.DISABLED);
if(result == 0)
- throw new IOError.FAILED("could not setup TLS");
+ throw new IOError.FAILED("could not configure STARTTLS");
/* setup authentication */
if(username != "") {