summaryrefslogtreecommitdiff
path: root/templates/amavisd
diff options
context:
space:
mode:
Diffstat (limited to 'templates/amavisd')
-rw-r--r--templates/amavisd/05-node_id.erb14
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/amavisd/05-node_id.erb b/templates/amavisd/05-node_id.erb
new file mode 100644
index 0000000..6a09896
--- /dev/null
+++ b/templates/amavisd/05-node_id.erb
@@ -0,0 +1,14 @@
+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";
+$myhostname = "<%= fqdn %>";
+
+1; # ensure a defined return