imapfilter convenience wrapper

imapdomo.skel 5.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. #!/bin/bash
  2. #shellcheck disable=SC1090
  3. . "$(sfpath)" || exit 3
  4. shellfu import pretty
  5. IMAPDOMO_CFGDIR="__IMAPDOMO_CONFIG_USER__"
  6. IMAPDOMO_USER_CACHE="__IMAPDOMO_USER_CACHE__"
  7. IMAPDOMO_HOME="__IMAPDOMO_SHARE__"
  8. usage() {
  9. mkusage "$@" "[options] ACTION" \
  10. -o \
  11. "-c DIR change to DIR before doing anything" \
  12. "-l list handlers and exit" \
  13. "-d turn on debugging mode" \
  14. "-t CERTS Use certificates file CERTS." \
  15. "-N turn off locking; make sure that handlers cannot" \
  16. " interfere with each other or that another locking" \
  17. " mechanism is in place. Also see NOTE below." \
  18. "-V Show imapdomo version and exit." \
  19. -- \
  20. "imapdomo will try to read init.lua and handlers/ACTION.lua from its" \
  21. "configuration directory." \
  22. "" \
  23. "See imapfilter_config(5)) for guide and API reference. Few functions"\
  24. "are also available in .imapdomo/imapdomo.lua" \
  25. "" \
  26. "NOTE: Be aware that it's your responsibility to ensure that filters" \
  27. "don't cause performance problems. (Trust me, it's not so hard to" \
  28. "\"earn\" yourself a nice server ban--I learned that the hard way)."
  29. }
  30. bug() {
  31. #
  32. # Die because of bug
  33. #
  34. local msg=$1
  35. local self
  36. self=$(basename "$0")
  37. warn "bug in $self (__MKIT_PROJ_VERSION__): $msg"
  38. }
  39. mkcmd() {
  40. #
  41. # Compose imapfilter command
  42. #
  43. echo -n "IMAPDOMO_ACTION=$Action"
  44. echo -n " LUA_PATH='$IMAPDOMO_HOME/?.lua;;'"
  45. echo -n " IMAPDOMO_CFGDIR=$CfgDir"
  46. echo -n " IMAPDOMO_HEADERS=$HeaderDir"
  47. echo -n " IMAPFILTER_HOME=$CfgDir"
  48. echo -n " imapfilter"
  49. if $Debug
  50. then
  51. mkdir -p "$LogDir"
  52. echo -n " -d $LogDir/debug.log"
  53. echo -n " -v"
  54. fi
  55. echo -n " -c $IMAPDOMO_HOME/main.lua"
  56. if test -n "$Certs"
  57. then
  58. echo -n " -t $Certs"
  59. fi
  60. }
  61. show_version() {
  62. echo '__MKIT_PROJ_NAME__ (__MKIT_PROJ_TAGLINE__) __MKIT_PROJ_VERSION__'
  63. exit 0
  64. }
  65. show_semversion() {
  66. echo '__MKIT_PROJ_VERSION__'
  67. exit 0
  68. }
  69. lshandlers() {
  70. #
  71. # List recognized handlers
  72. #
  73. find "$CfgDir/handlers" -name "*.lua" -printf '%f\n' \
  74. | sed 's/.lua$//'
  75. }
  76. lock() {
  77. #
  78. # Put the lockfile
  79. #
  80. debug -v NoLock
  81. $NoLock && return 0
  82. date +"$$@%s" > "$IMAPDOMO_USER_CACHE/lock"
  83. debug -f "$IMAPDOMO_USER_CACHE/lock"
  84. }
  85. is_locked() {
  86. #
  87. # Does lockfile exist?
  88. #
  89. # True if lockfile exists. False if lockfile does not exist or locking
  90. # is turned off.
  91. #
  92. debug -v NoLock
  93. $NoLock && return 1
  94. debug -f "$IMAPDOMO_USER_CACHE/lock"
  95. test -e "$IMAPDOMO_USER_CACHE/lock"
  96. }
  97. unlock() {
  98. #
  99. # Remove the lockfile
  100. #
  101. debug -v NoLock
  102. $NoLock && return 0
  103. debug -f "$IMAPDOMO_USER_CACHE/lock"
  104. rm "$IMAPDOMO_USER_CACHE/lock"
  105. }
  106. handle() {
  107. #
  108. # Handle action $Action
  109. #
  110. local cmd # imapfilter command
  111. lshandlers | grep -qwe "$Action" || {
  112. warn "no handler for action: $Action.lua in $CfgDir/handlers"
  113. return 2
  114. }
  115. cmd=$(mkcmd)
  116. debug -v cmd
  117. bash -n <<<"$cmd" || {
  118. bug "bad syntax of cmd: '$cmd'"
  119. return 3
  120. }
  121. if test -n "$CdTo";
  122. then
  123. cd "$CdTo" || {
  124. warn "cannot chdir to: $CdTo"
  125. return 3
  126. }
  127. fi
  128. mkdir -p "$HeaderDir" || {
  129. warn "cannot create header directory: $HeaderDir"
  130. return 3
  131. }
  132. eval "$cmd"
  133. }
  134. main() {
  135. local Action # what to do
  136. local Debug # true if debugging
  137. local CfgDir # config directory
  138. local LogDir # directory to store logs
  139. local HeaderDir # directory to store headers by save_header()
  140. local CdTo # change dir to this before running imapfilter
  141. local Certs # certificate storage
  142. local es=0 # exit status of this function
  143. local NoLock # disable locks
  144. CfgDir="$IMAPDOMO_CFGDIR"
  145. LogDir="$IMAPDOMO_USER_CACHE/logs"
  146. HeaderDir="$IMAPDOMO_USER_CACHE/headers"
  147. Certs="$IMAPDOMO_CFGDIR/certificates"
  148. NoLock=false
  149. Debug=false
  150. #shellcheck disable=SC2034
  151. while true; do case $1 in
  152. -c) CdTo="$2"; shift 2 || usage -w "missing value to: $1" ;;
  153. -d) Debug=true; PRETTY_DEBUG=true; shift ;;
  154. -t) Certs="$2"; shift 2 || usage -w "missing value to: $1" ;;
  155. -l) lshandlers; exit ;;
  156. -N) NoLock=true; shift ;;
  157. -V|--version-semver) show_semversion ;;
  158. --version) show_version ;;
  159. -*) usage -w "unknown argument: '$1'" ;;
  160. *) break ;;
  161. esac done
  162. Action="$1"; shift
  163. test -n "$Action" || usage -w "no action specified"
  164. test -f "$CfgDir/mailboxes.lua" || die "no mailboxes defined"
  165. debug -v Action CfgDir LogDir HeaderDir Debug CdTo NoLock
  166. is_locked && return 1
  167. lock
  168. handle; es=$?
  169. unlock
  170. return $es
  171. }
  172. main "$@"