diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-10-06 05:47:57 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-10-06 05:47:57 +0800 |
commit | cf44c7e8b2416f00bb0d8938e525ca59504a0041 (patch) | |
tree | 89a55fec3ef03e3aa99af58e318bac43c7e87913 /mail/mail-callbacks.c | |
parent | d52099b992e0bd87516b833b169a05c27df81566 (diff) | |
download | gsoc2013-evolution-cf44c7e8b2416f00bb0d8938e525ca59504a0041.tar.gz gsoc2013-evolution-cf44c7e8b2416f00bb0d8938e525ca59504a0041.tar.zst gsoc2013-evolution-cf44c7e8b2416f00bb0d8938e525ca59504a0041.zip |
fetch mail before sending, this is a temp fix for POP-before-SMTP
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.
svn path=/trunk/; revision=5749
Diffstat (limited to 'mail/mail-callbacks.c')
-rw-r--r-- | mail/mail-callbacks.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 |