mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
13 lines
430 B
Text
13 lines
430 B
Text
use strict;
|
|
|
|
# $myhostname is used by amavisd-new for node identification, and it is
|
|
# important to get it right (e.g. for ESMTP EHLO, loop detection, and so on).
|
|
|
|
#chomp($myhostname = `hostname --fqdn`);
|
|
|
|
# To manually set $myhostname, edit the following line with the correct Fully
|
|
# Qualified Domain Name (FQDN) and remove the # at the beginning of the line.
|
|
#
|
|
#$myhostname = "mail.example.com";
|
|
|
|
1; # ensure a defined return
|