I have multiple specific save-hooks defined for patterns. But for mail that doesn't match any of these, I would like to have a specific default. Right now mutt just takes the last of the defined save-hooks and uses that as a default.
Asked
Active
Viewed 725 times
1 Answers
2
Try adding a save-hook for .*
at the end - this should be used if there are no save-hooks above it, that would override.
If that doesn't work, try to put .*
before other hooks.
![](../../users/profiles/5799.webp)
user1686
- 8,717
- 25
- 38
-
1Setting the catch-all regexp before the other save-hooks worked. Thanks! – Steen Oct 20 '09 at 08:42