summaryrefslogtreecommitdiffstats
path: root/procmail
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-12-27 20:37:30 -0500
committerJesse Luehrs <doy@tozt.net>2021-12-27 20:37:30 -0500
commitffc6b6e8165518808ff31192920c80ec638ae3bb (patch)
tree8a336ef3e9c9166d85b4790844a9f017e398e10e /procmail
parent138ad2385fad783583c045b3cf516fe0b94b9320 (diff)
downloadconf-ffc6b6e8165518808ff31192920c80ec638ae3bb.tar.gz
conf-ffc6b6e8165518808ff31192920c80ec638ae3bb.zip
remove a bunch of unused stuff
Diffstat (limited to 'procmail')
-rw-r--r--procmail/mark_as_read20
1 files changed, 0 insertions, 20 deletions
diff --git a/procmail/mark_as_read b/procmail/mark_as_read
deleted file mode 100644
index bd853f8..0000000
--- a/procmail/mark_as_read
+++ /dev/null
@@ -1,20 +0,0 @@
-:0
-{
- :0c:
- $folder
-
- :0
- * LASTFOLDER ?? /\/[^/]+$
- { tail=$MATCH }
-
- file_read_base="${folder}cur/${tail}"
- file_new=$LASTFOLDER
- # pretty hackish, but what can you do
- file_cur="${file_read_base}*"
- file_read="${file_read_base}:2,S"
- TRAP="mv $file_new $file_read 2>/dev/null || mv $file_cur $file_read 2>/dev/null"
-
- HOST
-}
-
-# vim:ft=procmail: