mirror of
https://git.keinpfusch.net/loweel/zangtumb
synced 2025-03-07 15:47:36 +01:00
20 lines
274 B
Bash
Executable File
20 lines
274 B
Bash
Executable File
#!/bin/bash
|
|
|
|
##MAIN
|
|
export KEYFILE="certs/server.key"
|
|
export CERTFILE="certs/server.crt"
|
|
export DOMAINNAME="testDomain"
|
|
export LISTEN=":1025"
|
|
|
|
|
|
##SESSION
|
|
export RECIPIENTS="./recipients.conf.example"
|
|
export MAILFOLDER="mail"
|
|
|
|
##MAIN
|
|
export USETLS="false"
|
|
|
|
##RUN
|
|
|
|
./zangtumb
|