2008-05-21 [wwp] 3.4.0cvs60

* src/prefs_filtering.c
		Don't show SMTP-only accounts in accounts list, as they are
		irrelevant for filtering incoming messages.
This commit is contained in:
Tristan Chabredier 2008-05-21 10:00:16 +00:00
parent 6365a76142
commit f4ef4a5ff6
4 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2008-05-21 [wwp] 3.4.0cvs60
* src/prefs_filtering.c
Don't show SMTP-only accounts in accounts list, as they are
irrelevant for filtering incoming messages.
2008-05-21 [colin] 3.4.0cvs59
* src/mainwindow.c

View file

@ -3355,3 +3355,4 @@
( cvs diff -u -r 1.36.2.139 -r 1.36.2.140 src/common/utils.c; ) > 3.4.0cvs57.patchset
( cvs diff -u -r 1.179.2.221 -r 1.179.2.222 src/imap.c; ) > 3.4.0cvs58.patchset
( cvs diff -u -r 1.274.2.242 -r 1.274.2.243 src/mainwindow.c; ) > 3.4.0cvs59.patchset
( cvs diff -u -r 1.59.2.68 -r 1.59.2.69 src/prefs_filtering.c; ) > 3.4.0cvs60.patchset

View file

@ -11,7 +11,7 @@ MINOR_VERSION=4
MICRO_VERSION=0
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=59
EXTRA_VERSION=60
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=

View file

@ -261,7 +261,8 @@ static void prefs_filtering_account_option_menu_populate(void)
for (; accounts != NULL; accounts = accounts->next) {
PrefsAccount *ac = (PrefsAccount *)accounts->data;
COMBOBOX_ADD_ESCAPED(filtering.account_combobox_list, ac->account_name, ac->account_id);
if (ac->protocol != A_NONE)
COMBOBOX_ADD_ESCAPED(filtering.account_combobox_list, ac->account_name, ac->account_id);
}
}