From 9d464d5e542af7609e6ca97beed1d5ce167bbddf Mon Sep 17 00:00:00 2001
From: Alberto Bertogli <albertito@blitiri.com.ar>
Date: Thu, 14 Apr 2011 01:06:11 +0100
Subject: [PATCH 4/9] Always use lowercase emails

The server will always talk to us using lowercase emails, so we want to do
the same so we don't have any issues with dictionary lookups.

Thanks to Chris Hancock who reported the bug.

Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>
---
 msn |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/msn b/msn
index 2bc2558..8464969 100755
--- a/msn
+++ b/msn
@@ -1660,7 +1660,7 @@ config['profile'] = profile
 
 # set the mandatory values
 if config.has_key('email'):
-	m.email = config['email']
+	m.email = config['email'].lower()
 else:
 	perror('Error: email not specified in config file\n')
 	quit(1)
-- 
1.6.2.2.646.gb214

