fix smtp logging

This commit is contained in:
Colin Leroy 2003-02-21 20:32:31 +00:00
parent fe8db62477
commit b8a83c4dea
3 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2003-02-21 [colin] 0.8.10claws39
* src/send.c
Fix smtp logging
2003-02-21 [colin] 0.8.10claws38
* src/summaryview.c

View file

@ -11,7 +11,7 @@ MINOR_VERSION=8
MICRO_VERSION=10
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=claws38
EXTRA_VERSION=claws39
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
dnl set $target

View file

@ -389,6 +389,8 @@ gint send_message_smtp(PrefsAccount *ac_prefs, GSList *to_list,
}
}
statusbar_verbosity_set(TRUE);
dialog = send_progress_dialog_create();
text[0] = NULL;
@ -456,6 +458,7 @@ gint send_message_smtp(PrefsAccount *ac_prefs, GSList *to_list,
session_destroy(session);
send_progress_dialog_destroy(dialog);
statusbar_verbosity_set(FALSE);
return 0;
}