1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-04-10 11:04:35 +00:00

tests/thunderbird: add second filter for sort

Make sure they are generated in correct order.
This commit is contained in:
Austin Horstman 2025-03-09 20:24:26 -05:00
parent d5f38f3e59
commit a46a93e435
No known key found for this signature in database
2 changed files with 21 additions and 7 deletions

View file

@ -1,5 +1,10 @@
version="9"
logging="no"
name="Should be first"
enabled="yes"
type="128"
action="Cry"
condition="ALL"
name="Mark as Read on Archive"
enabled="yes"
type="128"

View file

@ -6,13 +6,22 @@
thunderbird = {
enable = true;
profiles = [ "first" ];
messageFilters = [{
name = "Mark as Read on Archive";
enabled = true;
type = "128";
action = "Mark read";
condition = "ALL";
}];
messageFilters = [
{
name = "Should be first";
enabled = true;
type = "128";
action = "Cry";
condition = "ALL";
}
{
name = "Mark as Read on Archive";
enabled = true;
type = "128";
action = "Mark read";
condition = "ALL";
}
];
};
aliases = [ "home-manager@example.com" ];