aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-account-gui.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-07-05 07:06:41 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-07-05 07:06:41 +0800
commit45f3b7586781b65bc51cfd77630a06a505786159 (patch)
tree3bc273644195ec4a32dcb7ddb757f439c8ee119d /mail/mail-account-gui.c
parentd579c1160d6cde0948e6f1a75a4a5dd67c6d74b1 (diff)
downloadgsoc2013-evolution-45f3b7586781b65bc51cfd77630a06a505786159.tar
gsoc2013-evolution-45f3b7586781b65bc51cfd77630a06a505786159.tar.gz
gsoc2013-evolution-45f3b7586781b65bc51cfd77630a06a505786159.tar.bz2
gsoc2013-evolution-45f3b7586781b65bc51cfd77630a06a505786159.tar.lz
gsoc2013-evolution-45f3b7586781b65bc51cfd77630a06a505786159.tar.xz
gsoc2013-evolution-45f3b7586781b65bc51cfd77630a06a505786159.tar.zst
gsoc2013-evolution-45f3b7586781b65bc51cfd77630a06a505786159.zip
Removed special-case code for NNTP support.
2002-07-04 Jeffrey Stedfast <fejj@ximian.com> * mail-accounts.c: Removed special-case code for NNTP support. * mail-account-gui.c (mail_account_gui_setup): Allow configuration of both mail and news accounts. * component-factory.c (mail_load_storages): No longer need the is-account argument. * subscribe-dialog.c (populate_store_list): Don't special-case news accounts anymore. * mail-config.c (mail_config_get_default_news): Removed. (mail_config_get_news): Removed. (mail_config_add_news): Removed. (mail_config_remove_news): Removed. svn path=/trunk/; revision=17368
Diffstat (limited to 'mail/mail-account-gui.c')
-rw-r--r--mail/mail-account-gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-account-gui.c b/mail/mail-account-gui.c
index 4d50cada51..1f2de490c0 100644
--- a/mail/mail-account-gui.c
+++ b/mail/mail-account-gui.c
@@ -1536,7 +1536,7 @@ mail_account_gui_setup (MailAccountGui *gui, GtkWidget *top)
for (l = providers; l; l = l->next) {
CamelProvider *provider = l->data;
- if (strcmp (provider->domain, "mail"))
+ if (!(!strcmp (provider->domain, "mail") || !strcmp (provider->domain, "news")))
continue;
item = NULL;