diff options
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-account-gui.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index d2b8e5eb63..69ba483109 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2001-06-12 Not Zed <NotZed@Ximian.com> + + * mail-account-gui.c (source_type_changed): Setup default spool + location same as for mbox mail retrieval. + 2001-06-08 Dan Winship <danw@ximian.com> * folder-browser-factory.c: fix some commands to match the ui file diff --git a/mail/mail-account-gui.c b/mail/mail-account-gui.c index 557bc49817..ba1af94bc0 100644 --- a/mail/mail-account-gui.c +++ b/mail/mail-account-gui.c @@ -225,7 +225,8 @@ source_type_changed (GtkWidget *widget, gpointer user_data) if (!dwidget) dwidget = GTK_WIDGET (gui->source.path); - if (!strcmp (provider->protocol, "mbox")) { + if (!strcmp (provider->protocol, "mbox") + || !strcmp(provider->protocol, "spool")) { char *path; if (getenv ("MAIL")) |