Wanderlust refile & expire?

配置了refileexpire以后没有效果。(在summary buffer里M-eC-o

我的配置:

(setq moon-wl-trvial-folder ".~/Mail/Gmail/[Gmail]/Trivial")
(setq moon-wl-important-folder ".~/Mail/Gmail/[Gmail]/Important")


;; refile
(setq wl-refile-rule-alist
      `("From"
        (,(regexp-quote "@pnc.com") . ,moon-wl-trvial-folder)
        (,(regexp-quote "@github.com") . ,moon-wl-trvial-folder)
        (,(regexp-quote "[email protected]") . ,moon-wl-trvial-folder)
        (,(regexp-quote "[email protected]") . ,moon-wl-trvial-folder)
        (,(regexp-quote "[email protected]") . ,moon-wl-trvial-folder)
        (,(regexp-quote "[email protected]") . ,moon-wl-trvial-folder)))

;; expire
(setq wl-expire-alist
      `((,(concat "/cc:[email protected]/" (regexp-quote ".~/Mail/Gmail/Inbox")) (date 7) trash)
        (,(regexp-quote ".~/Mail/Gmail/[Gmail]/Trivial") (date 14) trash)))

我的Maildir:

.
├── Gmail
│   ├── Inbox
│   │   ├── cur
│   │   ├── new
│   │   └── tmp
│   ├── Trivial
│   │   ├── cur
│   │   ├── new
│   │   └── tmp
│   └── [Gmail]
│       ├── All\ Mail
│       ├── Important
│       ├── Sent\ Mail
│       ├── Starred
│       └── Trash
├── draft
├── lost+found
└── queue

你的auto refile配置好了吗?

我现在遇到的问题是, 每次都得手动调用wl-summary-auto-refile, 也就是每次都得按一次(C-o). 能不能自动完成这个过程呢?