aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mail/ChangeLog9
-rw-r--r--mail/mail-callbacks.c3
2 files changed, 9 insertions, 3 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index aaa855c8a0..3327d5584a 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,7 +1,12 @@
+2000-10-05 Jeffrey Stedfast <fejj@helixcode.com>
+
+ * mail-callbacks.c (send_receieve_mail): fetch mail before
+ sending, this is a temp fix for POP-before-SMTP authentication.
+
2000-10-05 Michael Meeks <michael@helixcode.com>
- * component-factory.c (summary_fn, component_factory_init): Disable
- summary stuff, it appears to be badly broken.
+ * component-factory.c (summary_fn, component_factory_init):
+ Disable summary stuff, it appears to be badly broken.
* Makefile.am (evolution_mail_SOURCES): add mail-summary.[ch]
diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c
index 474b124786..35d59b688f 100644
--- a/mail/mail-callbacks.c
+++ b/mail/mail-callbacks.c
@@ -228,8 +228,9 @@ send_queued_mail (GtkWidget *widget, gpointer user_data)
void
send_receieve_mail (GtkWidget *widget, gpointer user_data)
{
- send_queued_mail (widget, user_data);
+ /* receive first then send, this is a temp fix for POP-before-SMTP */
fetch_mail (widget, user_data);
+ send_queued_mail (widget, user_data);
}
static gboolean