-1
大多數郵件列表在主題行前加上一個標籤,如f.e.procmail reciepe從主題行中刪除郵件列表標籤
[name-of-the-mailing-list] Original subject line
我將如何刪除方括號中的這些標籤,並最終將它們放在適當的文件夾中使用procmail配方?
大多數郵件列表在主題行前加上一個標籤,如f.e.procmail reciepe從主題行中刪除郵件列表標籤
[name-of-the-mailing-list] Original subject line
我將如何刪除方括號中的這些標籤,並最終將它們放在適當的文件夾中使用procmail配方?
我發現自己。本食譜中刪除標籤:
:0 fwH
* ^subject:.*([name-of-the-mailing-list])
|sed -e 's/^Subject:[ ]\[name-of-the-mailing-list\]/Subject: /g'
本食譜中刪除所有標籤:
:0 fwH
* ^subject:.*(\[[^]]*\])
|sed -e 's/^Subject:[ ]\[[^]]*\]/Subject: /g'