diff --git a/common/hub.py b/common/hub.py
index 843b6a4425aa868459e381357631bcd5ff501e92..d70ed82eb9e1a0d5883493c91f2a68024f2c6394 100644
--- a/common/hub.py
+++ b/common/hub.py
@@ -4,7 +4,7 @@
 ## Gajim Team:
 ## 	- Yann Le Boulanger <asterix@crans.org>
 ## 	- Vincent Hanquez <tab@tuxfamily.org>
-## 	- David Ferlier <krp@yazzy.org>
+## 	- David Ferlier <david@yazzy.org>
 ##
 ##	Copyright (C) 2003 Gajim Team
 ##
diff --git a/common/optparser.py b/common/optparser.py
index 6bdda65e07303f0f4378b9f9000fa14df5356b91..af9edfcfcb83eb86d5a24a467dec82ce809a803f 100644
--- a/common/optparser.py
+++ b/common/optparser.py
@@ -4,7 +4,7 @@
 ## Gajim Team:
 ## 	- Yann Le Boulanger <asterix@crans.org>
 ## 	- Vincent Hanquez <tab@tuxfamily.org>
-## 	- David Ferlier <krp@yazzy.org>
+## 	- David Ferlier <david@yazzy.org>
 ##
 ##	Copyright (C) 2003 Gajim Team
 ##
diff --git a/common/plugin.py b/common/plugin.py
index c1aad711fac69479dafe5d30d37d412129dd96f8..f4b4ad2125711695097d2b38d400a3cc3b8ef135 100644
--- a/common/plugin.py
+++ b/common/plugin.py
@@ -4,7 +4,7 @@
 ## Gajim Team:
 ## 	- Yann Le Boulanger <asterix@crans.org>
 ## 	- Vincent Hanquez <tab@tuxfamily.org>
-## 	- David Ferlier <krp@yazzy.org>
+## 	- David Ferlier <david@yazzy.org>
 ##
 ##	Copyright (C) 2003 Gajim Team
 ##
diff --git a/common/thread.py b/common/thread.py
index 5da21e14a09f1bb999e38681b29e973b46563ec3..c296c41f18a9815a7aa02663d0e79ff3535c7e38 100644
--- a/common/thread.py
+++ b/common/thread.py
@@ -4,7 +4,7 @@
 ## Gajim Team:
 ## 	- Yann Le Boulanger <asterix@crans.org>
 ## 	- Vincent Hanquez <tab@tuxfamily.org>
-## 	- David Ferlier <krp@yazzy.org>
+## 	- David Ferlier <david@yazzy.org>
 ##
 ##	Copyright (C) 2003 Gajim Team
 ##
diff --git a/core/core.py b/core/core.py
index 43109291a3f0fc2fea4717ae87b67ef9d28c8880..7b5003c4b7a5a14501af240936f16b92191d220c 100644
--- a/core/core.py
+++ b/core/core.py
@@ -4,7 +4,7 @@
 ## Gajim Team:
 ## 	- Yann Le Boulanger <asterix@crans.org>
 ## 	- Vincent Hanquez <tab@tuxfamily.org>
-## 	- David Ferlier <krp@yazzy.org>
+## 	- David Ferlier <david@yazzy.org>
 ##
 ##	Copyright (C) 2003 Gajim Team
 ##
@@ -21,6 +21,7 @@
 import Queue
 import socket
 import sys
+import os
 import time
 import logging
 
@@ -31,7 +32,11 @@ import common.optparser
 
 log = logging.getLogger('core.core')
 log.setLevel(logging.DEBUG)
-CONFPATH = ".gajimrc"
+if 'HOME' in os.environ:
+	home = os.environ['HOME']
+elif os.name == 'posix':
+	home = os.path.expanduser("~/")
+CONFPATH = os.path.join(home,".gajimrc")
 
 class GajimCore:
 	def __init__(self):
diff --git a/plugins/gtkgui.py b/plugins/gtkgui.py
index 7c0f3ce99b0cd04053cba188054e14ecebef61f9..37325a31c9ab0688971a905e1b977c902a9324d9 100644
--- a/plugins/gtkgui.py
+++ b/plugins/gtkgui.py
@@ -4,7 +4,7 @@
 ## Gajim Team:
 ## 	- Yann Le Boulanger <asterix@crans.org>
 ## 	- Vincent Hanquez <tab@tuxfamily.org>
-## 	- David Ferlier <krp@yazzy.org>
+## 	- David Ferlier <david@yazzy.org>
 ##
 ##	Copyright (C) 2003 Gajim Team
 ##
@@ -225,7 +225,7 @@ class roster:
 		self.optionmenu = self.xml.get_widget('optionmenu')
 		self.optionmenu.set_history(6)
 		self.tab_messages = {}
-		self.showOffline=1
+		self.showOffline=0
 
 		#colonnes
 		self.col = gtk.TreeViewColumn()
diff --git a/runCore.py b/runCore.py
index 1439487935e7e5ee239357381f6f1c33885db43b..658e22657da10cf584b3e4f98f9954a9ce25e727 100644
--- a/runCore.py
+++ b/runCore.py
@@ -2,9 +2,9 @@
 ##	runCore.py
 ##
 ## Gajim Team:
-## 	- Yann Le Boulanger <asterix@crans.org>
-## 	- Vincent Hanquez <tab@tuxfamily.org>
-## 	- David Ferlier <krp@yazzy.org>
+## 	- Yann Le Boulanger <asterix@@crans.org>
+## 	- Vincent Hanquez <tab@@tuxfamily.org>
+## 	- David Ferlier <david@@yazzy.org>
 ##
 ##	Copyright (C) 2003 Gajim Team
 ##