0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00

Merge pull request #499 from vakartel/master

VIRTUAL_VACATION/vacation.pl :: smtp_ssl variable must be boolean not literal
This commit is contained in:
David Goodwin 2021-06-02 11:27:24 +01:00 committed by GitHub
commit 2e0f42ec52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,8 +66,8 @@ our $smtp_client = 'localhost';
our $smtp_helo = 'localhost.localdomain';
# send mail encrypted or plaintext
# if 'starttls', use STARTTLS; if 'ssl' (or 1), connect securely; otherwise, no security
our $smtp_ssl = 'starttls';
# if 1, connect securely via ssl; otherwise, no security
our $smtp_ssl = 0;
# maximum time in secs to wait for server; default is 120
our $smtp_timeout = '120';