11 lines
189 B
Bash
Executable file
11 lines
189 B
Bash
Executable file
#!/bin/sh
|
|
|
|
while true
|
|
do
|
|
# Wait here
|
|
inotifywait -qq -e modify /home/eeva/.msmtpqueue
|
|
|
|
# Send
|
|
echo "Queue modified. Calling runqueue…"
|
|
/home/eeva/prefix/bin/msmtp-runqueue
|
|
done
|