mirror of
https://git.keinpfusch.net/loweel/zangtumb
synced 2024-12-19 08:12:46 +01:00
20 lines
273 B
Bash
Executable File
20 lines
273 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="true"
|
|
|
|
##RUN
|
|
|
|
./zangtumb
|