1
0
Fork 0
dotfiles/simpleDots/bin/wdavmaild
J. Elfring (i) e2120a56ae wdavmaild
2023-05-22 14:38:16 +02:00

17 lines
433 B
Bash
Executable file

#!/bin/bash
############################################################################
##
# wddavmaild
#
#
#
## Check for a tmux session with docker fo:wqr root is already running
if tmux has-session -t wdavmaild
then
echo "A wdavmaild session is already running. Attaching."
tmux attach -t wdavmaild
else
echo "Starting a new wdavmaild tmux-session."
tmux new-session -d -s wdavmaild davmail ~/.local/etc/davmail.conf
fi