Добро пожаловать в дополнения Thunderbird.
Добавляйте дополнительные функции и стили, чтобы настроить Thunderbird по своему вкусу.
ЗакрытьОтзыв на AutoarchiveReloaded от c5
Рейтинг 5 из 5 звёзд
If you are using Sieve you do no need this. You can do something like this :
```
require ["variables","date","fileinto","mailbox"];
# Extract date info
if currentdate :matches "year" "*" { set "year" "${1}"; }
if currentdate :matches "month" "*" { set "month" "${1}"; }
# Archive Dovecot mailing list items by year and month.
# Create folder when it does not exist.
if header :is "list-id" "dovecot.dovecot.org" {
fileinto :create "INBOX.Lists.${year}.${month}.dovecot";
}
```
And this will not loose your emails.
Для создания своих подборок вам необходимо иметь учётную запись на сайте дополнений Mozilla.