]> git.pld-linux.org Git - packages/eventum.git/blame_incremental - eventum-router-postfix.sh
Up to 3.10.12
[packages/eventum.git] / eventum-router-postfix.sh
... / ...
CommitLineData
1#!/bin/sh
2
3case "$1" in
4emails|emails\ *)
5 TYPE="emails"
6 ARG="${1#* }"
7 ;;
8drafts|notes)
9 TYPE="$1"
10;;
11*)
12 echo >&2 "Invalid type: $1"
13 exit 78
14esac
15
16
17exec /usr/share/eventum/bin/route_$TYPE.php "$ARG"
This page took 0.062994 seconds and 4 git commands to generate.