diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-09-05 04:50:34 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-09-05 04:50:34 +0800 |
commit | 12718c4056c30ac2bb1610f6ca62a378718b924c (patch) | |
tree | ce5c72a91fa3ea8cb816e7373bd385758f3a386e /importers/netscape-importer.c | |
parent | 98b0ce35e99ae6d6c0fffc791a98424ee9f40aca (diff) | |
download | gsoc2013-evolution-12718c4056c30ac2bb1610f6ca62a378718b924c.tar gsoc2013-evolution-12718c4056c30ac2bb1610f6ca62a378718b924c.tar.gz gsoc2013-evolution-12718c4056c30ac2bb1610f6ca62a378718b924c.tar.bz2 gsoc2013-evolution-12718c4056c30ac2bb1610f6ca62a378718b924c.tar.lz gsoc2013-evolution-12718c4056c30ac2bb1610f6ca62a378718b924c.tar.xz gsoc2013-evolution-12718c4056c30ac2bb1610f6ca62a378718b924c.tar.zst gsoc2013-evolution-12718c4056c30ac2bb1610f6ca62a378718b924c.zip |
Get the correct name from the prefs file, or from the passwd file if one does
not exist
svn path=/trunk/; revision=12597
Diffstat (limited to 'importers/netscape-importer.c')
-rw-r--r-- | importers/netscape-importer.c | 54 |
1 files changed, 51 insertions, 3 deletions
diff --git a/importers/netscape-importer.c b/importers/netscape-importer.c index 8c4283dc99..7d1f0d25e7 100644 --- a/importers/netscape-importer.c +++ b/importers/netscape-importer.c @@ -30,6 +30,8 @@ #include <errno.h> #include <sys/types.h> #include <sys/stat.h> +#include <pwd.h> +#include <ctype.h> #include <unistd.h> #include <dirent.h> @@ -300,9 +302,49 @@ netscape_init_prefs (void) return; } +static char * +get_user_fullname (void) +{ + char *uname, *gecos, *special; + struct passwd *pwd; + + uname = getenv ("USER"); + pwd = getpwnam (uname); + + if (strcmp (pwd->pw_gecos, "") == 0) { + return g_strdup (uname); + } + + special = strchr (pwd->pw_gecos, ','); + if (special == NULL) { + gecos = g_strdup (pwd->pw_gecos); + } else { + gecos = g_strndup (pwd->pw_gecos, special - pwd->pw_gecos); + } + + special = strchr (gecos, '&'); + if (special == NULL) { + return gecos; + } else { + char *capname, *expanded, *noamp; + + capname = g_strdup (uname); + capname[0] = toupper ((int) capname[0]); + noamp = g_strndup (gecos, special - gecos - 1); + expanded = g_strconcat (noamp, capname, NULL); + + g_free (noamp); + g_free (capname); + g_free (gecos); + + return expanded; + } +} + static void netscape_import_accounts (NetscapeImporter *importer) { + char *username; const char *nstr; const char *imap; GNOME_Evolution_MailConfig_Account account; @@ -332,7 +374,13 @@ netscape_import_accounts (NetscapeImporter *importer) /* Create identify structure */ nstr = netscape_get_string ("mail.identity.username"); - id.name = CORBA_string_dup (nstr ? nstr : "John Doe"); + if (nstr != NULL) { + username = g_strdup (nstr); + } else { + username = get_user_fullname (); + } + + id.name = CORBA_string_dup (username); nstr = netscape_get_string ("mail.identity.useremail"); id.address = CORBA_string_dup (nstr ? nstr : ""); nstr = netscape_get_string ("mail.identity.organization"); @@ -364,8 +412,8 @@ netscape_import_accounts (NetscapeImporter *importer) } /* Create account */ - nstr = netscape_get_string ("mail.identity.username"); - account.name = CORBA_string_dup (nstr ? nstr : ""); + account.name = CORBA_string_dup (username); + g_free (username); account.id = id; account.transport = transport; |