[Xfce4-commits] <postler:master> Read sending server from the "send" field if present
Christian Dywan
noreply at xfce.org
Thu Jul 29 12:26:05 CEST 2010
Updating branch refs/heads/master
to 4968be5f4d9b7b87d12c42ccbf22f246d364f19f (commit)
from 71de830c8643dea06f078b1738fc2ffc48f00310 (commit)
commit 4968be5f4d9b7b87d12c42ccbf22f246d364f19f
Author: Christian Dywan <christian at twotoasts.de>
Date: Wed Jul 21 22:11:21 2010 +0200
Read sending server from the "send" field if present
postler/postler-accounts.vala | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/postler/postler-accounts.vala b/postler/postler-accounts.vala
index bd8e7a0..d7900c3 100644
--- a/postler/postler-accounts.vala
+++ b/postler/postler-accounts.vala
@@ -125,6 +125,8 @@ public class Postler.Accounts : GLib.Object {
info.prefix = keyfile.get_string (group, "prefix");
if (keyfile.has_key (group, "receive"))
info.receive = keyfile.get_string (group, "receive");
+ if (keyfile.has_key (group, "send"))
+ info.send = keyfile.get_string (group, "send");
if (keyfile.has_key (group, "certificate"))
info.certificate = keyfile.get_string (group, "certificate");
if (keyfile.has_key (group, "sync"))
More information about the Xfce4-commits
mailing list