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:
parent
d5f38f3e59
commit
a46a93e435
2 changed files with 21 additions and 7 deletions
|
@ -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"
|
||||
|
|
|
@ -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" ];
|
||||
|
|
Loading…
Add table
Reference in a new issue