You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/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
|